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.
22 lines
487 B
22 lines
487 B
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"outDir": "./dist",
|
|
"module": "commonjs",
|
|
"lib": ["ESNext"],
|
|
"sourceMap": false,
|
|
"target": "esnext",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"allowJs": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": true,
|
|
"removeComments": false,
|
|
"preserveSymlinks": true
|
|
},
|
|
"include": ["src"]
|
|
}
|