mirror of
https://gitee.com/wonderful-code/buildadmin
synced 2024-11-21 22:55:36 +00:00
23 lines
574 B
JSON
23 lines
574 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"useDefineForClassFields": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"removeComments": false,
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": false,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"lib": ["esnext", "dom"],
|
|
"isolatedModules": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"/@/*": ["src/*"]
|
|
},
|
|
"types": ["element-plus/global"]
|
|
},
|
|
"exclude": ["node_modules"]
|
|
}
|