1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2025-02-18 00:30:43 +00:00
8bitworkshop/tsconfig.json

23 lines
483 B
JSON
Raw Normal View History

{
"compilerOptions": {
"outDir": "./gen",
"allowJs": true,
2019-08-22 18:26:45 -04:00
"checkJs": true,
"sourceMap": true,
"target": "es5",
"lib": [
"es2016",
"dom"
2018-07-07 22:10:51 -05:00
],
"noImplicitThis": false,
2018-07-08 09:07:19 -05:00
"noImplicitAny": false,
2019-08-22 18:26:45 -04:00
"preserveConstEnums": true,
"alwaysStrict": true,
"strictNullChecks": false
},
"include": [
"./src/**/*.ts",
"./localForage/typings/*.ts"
]
}