1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-07 01:29:30 +00:00
8bitworkshop/tsconfig-base.json
2020-07-05 17:38:18 -05:00

21 lines
479 B
JSON

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