1
0
mirror of https://github.com/sehugg/8bitworkshop.git synced 2024-06-01 05:41:31 +00:00
8bitworkshop/tsconfig.json

20 lines
387 B
JSON
Raw Normal View History

{
"compilerOptions": {
"outDir": "./gen",
"allowJs": true,
"sourceMap": true,
"target": "es5",
"lib": [
"es2016",
"dom"
2018-07-08 03:10:51 +00:00
],
"noImplicitThis": false,
2018-07-08 14:07:19 +00:00
"noImplicitAny": false,
"alwaysStrict": true
},
"include": [
"./src/**/*.ts",
"./localForage/typings/*.ts"
]
}