2021-05-14 20:35:22 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"sourceMap": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"lib": ["esnext", "dom"],
|
2022-03-17 21:09:12 +08:00
|
|
|
"types": ["vite/client", "element-plus/global", "node"],
|
2021-05-14 20:35:22 +08:00
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
|
|
|
"@/*": [
|
|
|
|
"src/*"
|
|
|
|
]
|
|
|
|
},
|
2022-07-09 15:33:13 +08:00
|
|
|
"useUnknownInCatchVariables": false
|
2021-05-14 20:35:22 +08:00
|
|
|
},
|
2022-07-09 15:33:13 +08:00
|
|
|
"include": ["auto-imports.d.ts", "components.d.ts", "src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
|
2021-05-14 20:35:22 +08:00
|
|
|
}
|