22 lines
569 B
JSON
22 lines
569 B
JSON
{
|
||
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
||
"compilerOptions": {
|
||
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
||
"types": ["vite/client"],
|
||
|
||
/* 核心修复:添加别名解析 */
|
||
"baseUrl": ".",
|
||
"paths": {
|
||
"@/*": ["./src/*"]
|
||
},
|
||
|
||
/* Linting */
|
||
"strict": true,
|
||
"noUnusedLocals": true,
|
||
"noUnusedParameters": true,
|
||
"erasableSyntaxOnly": true,
|
||
"noFallthroughCasesInSwitch": true,
|
||
"noUncheckedSideEffectImports": true
|
||
},
|
||
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
|
||
} |