Files
lanecarford_front/tsconfig.json

26 lines
622 B
JSON
Raw Normal View History

2025-10-09 09:29:36 +08:00
{
"extends": "@vue/tsconfig/tsconfig.web.json",
2025-10-21 11:21:15 +08:00
"include": ["env.d.ts", "src/**/*", "src/**/*.vue", "src/types/**/*.d.ts"],
2025-10-09 09:29:36 +08:00
"compilerOptions": {
2025-10-21 11:21:15 +08:00
"forceConsistentCasingInFileNames": false, // ⚠️ 禁用大小写检查
"allowJs": true,
2025-10-09 09:29:36 +08:00
"baseUrl": ".",
2025-10-21 11:21:15 +08:00
"types": ["node", "unplugin-vue-define-options/macros-global"],
2025-10-09 09:29:36 +08:00
"paths": {
"@/*": ["./src/*"],
"_c/*": ["./src/components/*"]
2025-10-09 11:33:47 +08:00
},
"skipLibCheck": true,
2025-10-13 15:38:33 +08:00
"strict": false,
2025-10-28 15:30:31 +08:00
"noEmit": true,
"noImplicitAny": false,
"noEmitOnError": false
2025-10-09 09:29:36 +08:00
},
"references": [
{
"path": "./tsconfig.node.json"
}
]
}