Files
lanecarford_front/tsconfig.json

24 lines
569 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,
"noEmit": true
2025-10-09 09:29:36 +08:00
},
"references": [
{
"path": "./tsconfig.node.json"
}
]
}