vehicle-monitor/tsconfig.json

50 lines
945 B
JSON
Raw Normal View History

2025-02-24 18:23:33 +08:00
{
2025-02-25 18:29:26 +08:00
"compilerOptions": {
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"noLib": false,
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": [
"esnext",
"dom"
],
"baseUrl": ".",
"allowJs": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"jsx": "preserve",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"paths": {
"@/*": [
"src/*"
]
2025-02-24 22:45:14 +08:00
},
2025-02-25 18:29:26 +08:00
"types": [
"vite/client",
"unplugin-icons/types/vue",
"element-plus/global"
]
},
"files": [],
2025-02-24 22:45:14 +08:00
"include": [
"mock/*.ts",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.vue",
"src/types/*.d.ts",
"vite.config.ts"
],
"exclude": [
"dist",
"**/*.js",
"node_modules"
2025-02-24 18:23:33 +08:00
]
}