修改部分规则模块删除无用前端 新增前端界面
This commit is contained in:
20
modeler/tsconfig.app.json
Normal file
20
modeler/tsconfig.app.json
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"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"]
|
||||
}
|
||||
Reference in New Issue
Block a user