2018-07-06 00:13:07 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "./gen",
|
|
|
|
"allowJs": true,
|
2019-08-22 22:26:45 +00:00
|
|
|
"checkJs": true,
|
2018-07-06 00:13:07 +00:00
|
|
|
"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,
|
2019-08-24 02:32:10 +00:00
|
|
|
"alwaysStrict": true,
|
|
|
|
"strictNullChecks": false
|
2018-07-06 00:13:07 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2018-07-10 05:09:10 +00:00
|
|
|
"./src/**/*.ts",
|
2019-08-31 19:36:50 +00:00
|
|
|
"./test/**/*.ts",
|
2018-07-07 05:09:15 +00:00
|
|
|
"./localForage/typings/*.ts"
|
2018-07-06 00:13:07 +00:00
|
|
|
]
|
|
|
|
}
|