21 lines
626 B
JSON
21 lines
626 B
JSON
{
|
|
"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"]
|
|
}
|