This commit is contained in:
X1627315083@163.com
2026-05-19 09:57:24 +08:00
parent 6523c30d9f
commit 0bc1bd79ed
12 changed files with 169 additions and 17 deletions

View File

@@ -1,26 +1,28 @@
{
"files": [],
// "files": [],
"include": ["env.d.ts", "src/**/*", "src/**/*.vue", "src/types/**/*.d.ts"],
"compilerOptions": {
"noUnusedLocals": false, // 关闭未使用局部变量检查
"noUnusedParameters": false, // 关闭未使用参数检查
"forceConsistentCasingInFileNames": false, // ⚠️ 禁用大小写检查
"allowJs": true,
"baseUrl": ".",
"types": ["node", "unplugin-vue-define-options/macros-global"],
"types": ["node"],
"paths": {
"@/*": ["./src/*"],
"_c/*": ["./src/components/*"]
},
"rootDirs": ["./src"],
"skipLibCheck": true,
"strict": false,
"noEmit": true,
"noImplicitAny": false,
"noEmitOnError": false
},
}
"references": [
{ "path": "./tsconfig.app.json" },
{
"path": "./tsconfig.node.json"
}
]
// "references": [
// { "path": "./tsconfig.app.json" },
// {
// "path": "./tsconfig.node.json"
// }
// ]
}