2016-12-03 17:09:39 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2016-12-07 08:03:23 +03:00
|
|
|
"noUnusedLocals": true,
|
2016-12-10 05:29:03 +03:00
|
|
|
"noImplicitAny": true,
|
2019-09-18 14:36:08 +03:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noImplicitUseStrict": true,
|
2016-12-08 18:10:12 +03:00
|
|
|
"removeComments": true,
|
2016-12-05 00:52:10 +03:00
|
|
|
"declaration": true,
|
2019-08-26 13:29:52 +03:00
|
|
|
"target": "es2015",
|
2016-12-20 17:17:37 +03:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
2020-03-08 11:54:44 +03:00
|
|
|
"esnext.array"
|
2016-12-20 17:17:37 +03:00
|
|
|
],
|
2016-12-03 17:09:39 +03:00
|
|
|
"module": "commonjs",
|
2020-03-08 12:26:47 +03:00
|
|
|
"outDir": "dist",
|
2019-09-16 21:38:23 +03:00
|
|
|
"sourceMap": true,
|
|
|
|
"typeRoots" : [
|
2020-03-08 12:26:47 +03:00
|
|
|
"node_modules/@types"
|
2019-09-19 16:22:39 +03:00
|
|
|
]
|
2016-12-03 17:09:39 +03:00
|
|
|
},
|
2016-12-05 00:52:10 +03:00
|
|
|
"include": [
|
2020-03-08 12:26:47 +03:00
|
|
|
"src/**/*.ts"
|
2016-12-05 00:52:10 +03:00
|
|
|
],
|
2020-03-08 12:26:47 +03:00
|
|
|
"exclude": []
|
2016-12-03 17:09:39 +03:00
|
|
|
}
|