LSF_Application/tsconfig.app.json

21 lines
549 B
JSON
Raw Permalink Normal View History

2025-07-10 11:24:06 +08:00
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
2025-07-14 17:14:32 +08:00
"erasableSyntaxOnly": false,
2025-07-10 11:24:06 +08:00
"noFallthroughCasesInSwitch": true,
2025-07-14 17:14:32 +08:00
"noUncheckedSideEffectImports": true,
"skipLibCheck": true,
"baseUrl": "./", // 基准路径
"paths": {
"@/*": ["src/*"] // 路径映射
}
2025-07-10 11:24:06 +08:00
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
}