32 lines
729 B
JSON
32 lines
729 B
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "Bundler",
|
||
|
|
"strict": true,
|
||
|
|
"jsx": "preserve",
|
||
|
|
"sourceMap": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
"useDefineForClassFields": true,
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["src/*"]
|
||
|
|
},
|
||
|
|
"types": ["node", "element-plus/global"]
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src/**/*.ts",
|
||
|
|
"src/**/*.tsx",
|
||
|
|
"src/**/*.vue",
|
||
|
|
"env.d.ts"
|
||
|
|
],
|
||
|
|
"exclude": ["node_modules", "dist"]
|
||
|
|
}
|