mirror of https://github.com/vuejs/vitepress
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
642 B
31 lines
642 B
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "preserve",
|
|
"moduleResolution": "bundler",
|
|
"moduleDetection": "force",
|
|
"lib": ["ES2023", "DOM", "DOM.Iterable"],
|
|
|
|
"noEmit": true,
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"verbatimModuleSyntax": true,
|
|
"erasableSyntaxOnly": true,
|
|
|
|
"strict": true,
|
|
"noImplicitOverride": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": [
|
|
"**/node_modules/**",
|
|
"**/dist/**",
|
|
"template",
|
|
"bin",
|
|
"docs/snippets"
|
|
]
|
|
}
|