mirror of
https://github.com/sehugg/8bitworkshop.git
synced 2024-11-19 09:31:24 +00:00
24 lines
509 B
JSON
24 lines
509 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",
|
|
"./test/**/*.ts",
|
|
"./localForage/typings/*.ts"
|
|
]
|
|
}
|