mirror of
https://github.com/142vip/408CSFamily.git
synced 2026-02-02 18:20:26 +08:00
39 lines
837 B
JSON
39 lines
837 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"moduleDetection": "force",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"paths": {
|
|
"@theme/*": [
|
|
".vitepress/theme/*"
|
|
]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"typeRoots": [
|
|
"./typings",
|
|
"./node_modules/@types"
|
|
],
|
|
"strictNullChecks": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"declaration": false,
|
|
"inlineSourceMap": true,
|
|
"stripInternal": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true,
|
|
"pretty": true
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
"test"
|
|
]
|
|
}
|