mirror of
https://github.com/cool-team-official/cool-admin-midway.git
synced 2024-11-01 22:20:30 +08:00
26 lines
554 B
JSON
26 lines
554 B
JSON
|
{
|
||
|
"compileOnSave": true,
|
||
|
"compilerOptions": {
|
||
|
"target": "es2018",
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"experimentalDecorators": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"inlineSourceMap":false,
|
||
|
"noImplicitThis": true,
|
||
|
"noUnusedLocals": true,
|
||
|
"stripInternal": true,
|
||
|
"skipLibCheck": true,
|
||
|
"noImplicitReturns": false,
|
||
|
"pretty": true,
|
||
|
"declaration": true,
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"outDir": "dist"
|
||
|
},
|
||
|
"exclude": [
|
||
|
"dist",
|
||
|
"node_modules",
|
||
|
"test"
|
||
|
]
|
||
|
}
|