mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2024-11-01 14:10:27 +08:00
24 lines
580 B
JSON
24 lines
580 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"experimentalDecorators": true,
|
||
|
"target": "esnext",
|
||
|
"module": "esnext",
|
||
|
"strict": true,
|
||
|
"jsx": "preserve",
|
||
|
"importHelpers": true,
|
||
|
"moduleResolution": "node",
|
||
|
"skipLibCheck": true,
|
||
|
"esModuleInterop": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"sourceMap": true,
|
||
|
"baseUrl": ".",
|
||
|
"types": ["webpack-env"],
|
||
|
"paths": {
|
||
|
"@/*": ["src/*"]
|
||
|
},
|
||
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
||
|
},
|
||
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "tests/**/*.ts", "tests/**/*.tsx"],
|
||
|
"exclude": ["node_modules"]
|
||
|
}
|