SYN/stu/tsconfig.app.json

21 lines
626 B
JSON
Raw Permalink Normal View History

2025-12-05 08:42:10 +00:00
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"types": ["vite/client"],
/* Linting */
"strict": true,
"composite":true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": false,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"verbatimModuleSyntax": false,
"baseUrl": ".", // 基础路径为项目根目录
"paths": { "@/*": ["src/*"] } // 与 Vite 别名同步
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
}