Files
Code-Create/tsconfig.json
X1627315083@163.com 0bc1bd79ed fix
2026-05-19 09:57:24 +08:00

28 lines
711 B
JSON

{
// "files": [],
"include": ["env.d.ts", "src/**/*", "src/**/*.vue", "src/types/**/*.d.ts"],
"compilerOptions": {
"noUnusedLocals": false, // 关闭未使用局部变量检查
"noUnusedParameters": false, // 关闭未使用参数检查
"forceConsistentCasingInFileNames": false, // ⚠️ 禁用大小写检查
"allowJs": true,
"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"
// }
// ]
}