2015-12-13 23:47:30 +01:00
|
|
|
{
|
2018-01-03 14:42:06 +01:00
|
|
|
"compileOnSave": true,
|
2016-01-18 22:41:25 +01:00
|
|
|
"compilerOptions": {
|
2020-04-06 17:35:51 +02:00
|
|
|
"target": "ES6",
|
2016-01-18 22:41:25 +01:00
|
|
|
"jsx": "react",
|
2016-11-13 08:16:12 +01:00
|
|
|
"reactNamespace": "React",
|
2017-04-20 03:09:25 +02:00
|
|
|
"module": "commonjs",
|
2020-04-06 17:35:51 +02:00
|
|
|
"moduleResolution": "node",
|
2016-01-18 22:41:25 +01:00
|
|
|
"sourceMap": true,
|
2017-04-20 03:09:25 +02:00
|
|
|
"lib": [
|
2018-01-03 14:42:06 +01:00
|
|
|
"es6",
|
|
|
|
"dom"
|
2017-04-20 03:09:25 +02:00
|
|
|
],
|
2016-02-10 02:03:31 +01:00
|
|
|
"noImplicitReturns": true,
|
2016-09-12 17:41:12 +02:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2017-05-27 16:31:11 +02:00
|
|
|
"strict": true,
|
2018-09-20 02:56:13 +02:00
|
|
|
"strictPropertyInitialization": false,
|
2019-08-14 18:25:30 +02:00
|
|
|
"outDir": "dist/node",
|
2017-05-27 18:43:11 +02:00
|
|
|
"noImplicitAny": true,
|
2019-12-14 17:23:31 +01:00
|
|
|
"noImplicitThis": true,
|
2017-05-27 18:43:11 +02:00
|
|
|
"allowJs": true,
|
2017-05-29 18:27:50 +02:00
|
|
|
"checkJs": true,
|
2019-08-29 23:12:55 +02:00
|
|
|
"incremental": true,
|
2020-04-06 17:35:51 +02:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"importHelpers": true
|
2016-01-18 22:41:25 +01:00
|
|
|
},
|
2020-04-06 17:35:51 +02:00
|
|
|
"include": ["src/**/*"]
|
|
|
|
}
|