8bitworkshop/tsconfig.json

24 lines
509 B
JSON
Raw Normal View History

{
"compilerOptions": {
"outDir": "./gen",
"allowJs": true,
2019-08-22 22:26:45 +00:00
"checkJs": 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,
2019-08-22 22:26:45 +00:00
"preserveConstEnums": true,
"alwaysStrict": true,
"strictNullChecks": false
},
"include": [
"./src/**/*.ts",
2019-08-31 19:36:50 +00:00
"./test/**/*.ts",
"./localForage/typings/*.ts"
]
}