2025-12-10 20:52:44 +08:00
|
|
|
{
|
|
|
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
2026-03-20 01:06:15 +08:00
|
|
|
"lib": ["ES2021", "DOM", "DOM.Iterable"],
|
2025-12-10 20:52:44 +08:00
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["./src/*"]
|
|
|
|
|
},
|
|
|
|
|
/* Linting */
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"noUncheckedSideEffectImports": true,
|
|
|
|
|
/* 跳过库检查以避免 Vue 内部类型问题 */
|
|
|
|
|
"skipLibCheck": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
|
|
|
|
|
}
|