2016-12-03 15:09:39 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2016-12-07 06:03:23 +01:00
|
|
|
"noUnusedLocals": true,
|
2016-12-10 03:29:03 +01:00
|
|
|
"noImplicitAny": true,
|
2019-09-18 13:36:08 +02:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noImplicitUseStrict": true,
|
2016-12-08 16:10:12 +01:00
|
|
|
"removeComments": true,
|
2016-12-04 22:52:10 +01:00
|
|
|
"declaration": true,
|
2019-08-26 12:29:52 +02:00
|
|
|
"target": "es2015",
|
2016-12-20 15:17:37 +01:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
2019-08-26 12:29:52 +02:00
|
|
|
"es2018"
|
2016-12-20 15:17:37 +01:00
|
|
|
],
|
2016-12-03 15:09:39 +01:00
|
|
|
"module": "commonjs",
|
|
|
|
"outDir": "./dist/",
|
2019-09-16 20:38:23 +02:00
|
|
|
"sourceMap": true,
|
|
|
|
"typeRoots" : [
|
|
|
|
"./node_modules/@types"
|
|
|
|
],
|
2016-12-03 15:09:39 +01:00
|
|
|
},
|
2016-12-04 22:52:10 +01:00
|
|
|
"include": [
|
|
|
|
"src/**/*.ts"
|
|
|
|
],
|
2016-12-03 15:09:39 +01:00
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
]
|
|
|
|
}
|