Files
auto-solution/modeler/tsconfig.app.json

21 lines
766 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"types": ["vite/client"],
"baseUrl": ".", // 基础路径相对于当前tsconfig文件
"paths": {
"@/*": ["src/*"] // 映射 @ 到 src 目录
},
/* Linting */
"strict": true,
"noUnusedLocals": false, // 关闭未使用的局部变量检查(解决 TS6133
"noUnusedParameters": false, // 关闭未使用的函数参数检查(可选,若有类似参数错误)
"erasableSyntaxOnly": true,
"strictNullChecks": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
}