1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-01 20:41:36 +00:00
8bitworkshop/tsconfig.json
2019-08-24 10:35:33 -04:00

23 lines
483 B
JSON

{
"compilerOptions": {
"outDir": "./gen",
"allowJs": true,
"checkJs": true,
"sourceMap": true,
"target": "es5",
"lib": [
"es2016",
"dom"
],
"noImplicitThis": false,
"noImplicitAny": false,
"preserveConstEnums": true,
"alwaysStrict": true,
"strictNullChecks": false
},
"include": [
"./src/**/*.ts",
"./localForage/typings/*.ts"
]
}