ms/tsconfig.json
MiaoWoo 5e89872477 feat: add incremental compiler config
Signed-off-by: MiaoWoo <admin@yumc.pw>
2020-05-10 16:24:19 +08:00

20 lines
520 B
JSON

{
"compilerOptions": {
"incremental": true,
"baseUrl": "src",
"outDir": "dist",
"target": "es5",
"module": "commonjs",
"strict": true,
"strictNullChecks": false,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"noImplicitAny": false,
"downlevelIteration": true,
"allowUnreachableCode": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": []
}
}