mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-01-23 09:40:25 +08:00
b464b87ac5
* chore: detail adjustment * refactor: Migrate demo applications to playground * perf: logic optimization * chore: update docs * chore: update docs
41 lines
1014 B
JSON
41 lines
1014 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Base",
|
|
"compilerOptions": {
|
|
"composite": false,
|
|
"target": "ESNext",
|
|
|
|
"moduleDetection": "force",
|
|
"experimentalDecorators": true,
|
|
|
|
"baseUrl": ".",
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitThis": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
|
|
"inlineSources": false,
|
|
"noEmit": true,
|
|
"removeComments": true,
|
|
"sourceMap": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true,
|
|
"preserveWatchOutput": true
|
|
},
|
|
"exclude": ["**/node_modules/**", "**/dist/**", "**/.turbo/**"]
|
|
}
|