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