2024-02-19 13:44:32 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "esnext",
|
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"removeComments": false,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"jsx": "preserve",
|
|
|
|
|
"sourceMap": false,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"lib": ["esnext", "dom"],
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"baseUrl": "./",
|
|
|
|
|
"paths": {
|
2024-04-07 13:43:30 +08:00
|
|
|
"@/*": ["src/*"],
|
|
|
|
|
"/@/*": ["./src/*"]
|
2024-02-19 13:44:32 +08:00
|
|
|
},
|
|
|
|
|
"types": ["element-plus/global", "element-plus/lib/locale"]
|
|
|
|
|
},
|
2024-05-09 14:18:39 +08:00
|
|
|
"include": [
|
|
|
|
|
"src",
|
|
|
|
|
"types/**/*.d.ts",
|
|
|
|
|
"src/types/auto-imports.d.ts",
|
|
|
|
|
"src/types/auto-components.d.ts"
|
|
|
|
|
],
|
2024-02-28 14:14:45 +08:00
|
|
|
"exclude": ["node_modules"],
|
2024-02-19 13:44:32 +08:00
|
|
|
}
|