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.
27 lines
618 B
27 lines
618 B
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"outDir": "./dist",
|
|
"module": "commonjs",
|
|
"lib": ["ESNext", "DOM"],
|
|
"sourceMap": false,
|
|
"target": "esnext",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": true,
|
|
"removeComments": false,
|
|
"preserveSymlinks": true,
|
|
"paths": {
|
|
"/@app/*": ["lib/app/*"],
|
|
"/@theme/*": ["lib/theme-default/*"]
|
|
}
|
|
},
|
|
"include": ["src", "lib"]
|
|
}
|