1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2025-01-10 16:29:48 +00:00
8bitworkshop/tsconfig.json

24 lines
509 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",
2019-08-31 15:36:50 -04:00
"./test/**/*.ts",
"./localForage/typings/*.ts"
]
}