Files
Code-Create/tsconfig.json

28 lines
711 B
JSON
Raw Normal View History

2026-05-14 09:53:22 +08:00
{
2026-05-19 09:57:24 +08:00
// "files": [],
2026-05-18 10:41:18 +08:00
"include": ["env.d.ts", "src/**/*", "src/**/*.vue", "src/types/**/*.d.ts"],
"compilerOptions": {
2026-05-19 09:57:24 +08:00
"noUnusedLocals": false, // 关闭未使用局部变量检查
"noUnusedParameters": false, // 关闭未使用参数检查
2026-05-18 10:41:18 +08:00
"forceConsistentCasingInFileNames": false, // ⚠️ 禁用大小写检查
"allowJs": true,
2026-05-19 09:57:24 +08:00
"types": ["node"],
2026-05-18 10:41:18 +08:00
"paths": {
"@/*": ["./src/*"],
"_c/*": ["./src/components/*"]
},
2026-05-19 09:57:24 +08:00
"rootDirs": ["./src"],
2026-05-18 10:41:18 +08:00
"skipLibCheck": true,
"strict": false,
"noEmit": true,
"noImplicitAny": false,
"noEmitOnError": false
2026-05-19 09:57:24 +08:00
}
2026-05-18 10:41:18 +08:00
2026-05-19 09:57:24 +08:00
// "references": [
// { "path": "./tsconfig.app.json" },
// {
// "path": "./tsconfig.node.json"
// }
// ]
2026-05-18 10:41:18 +08:00
}