mirror of
https://github.com/cool-team-official/cool-admin-midway.git
synced 2024-11-01 14:10:29 +08:00
27 lines
593 B
JSON
27 lines
593 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"inlineSourceMap":true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": false,
|
|
"stripInternal": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"pretty": true,
|
|
"declaration": true,
|
|
"noImplicitAny": false,
|
|
"typeRoots": [ "./typings", "./node_modules/@types"],
|
|
"outDir": "dist"
|
|
},
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules",
|
|
"test"
|
|
]
|
|
}
|