8bitworkshop/tsconfig-base.json

21 lines
479 B
JSON

{
"compilerOptions": {
"composite": true,
"allowJs": false,
"checkJs": false,
"sourceMap": true,
"target": "es5",
"lib": [
"es2017",
"dom"
],
"noImplicitThis": false,
"noImplicitAny": false,
"preserveConstEnums": true,
"alwaysStrict": true,
"strictNullChecks": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
}
}