ms/tsconfig.json
MiaoWoo b0409c46ba feat: enable sourceMap
Signed-off-by: MiaoWoo <admin@yumc.pw>
2020-02-15 18:49:18 +08:00

19 lines
491 B
JSON

{
"compilerOptions": {
"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": []
}
}