mirror of
https://github.com/cool-team-official/cool-admin-vue.git
synced 2024-11-01 22:20:27 +08:00
26 lines
648 B
JSON
26 lines
648 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"noImplicitAny": false,
|
|
"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",
|
|
"paths": {},
|
|
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"],
|
|
"exclude": ["node_modules", "src/demo/*", "src/main.ts", "src/components/*"]
|
|
}
|