2020-04-03 14:56:21 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "./dist/",
|
|
|
|
"sourceMap": true,
|
|
|
|
"moduleResolution": "node",
|
2020-07-27 22:48:04 +02:00
|
|
|
"module": "CommonJS",
|
2020-07-23 18:09:24 +02:00
|
|
|
"target": "ES2015",
|
2020-06-22 15:00:23 +02:00
|
|
|
"downlevelIteration": true,
|
2020-04-03 14:56:21 +02:00
|
|
|
"jsx": "react",
|
2020-06-03 11:18:53 +02:00
|
|
|
"allowJs": true,
|
2020-06-03 23:17:52 +02:00
|
|
|
|
2020-08-07 23:39:06 +02:00
|
|
|
"strict": true, /* Enable all strict type-checking options. */
|
2020-06-03 23:17:52 +02:00
|
|
|
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
|
|
|
|
"strictNullChecks": true, /* Enable strict null checks. */
|
|
|
|
"strictFunctionTypes": true, /* Enable strict checking of function types. */
|
|
|
|
"strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */
|
2020-08-07 23:39:06 +02:00
|
|
|
"strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */
|
2020-06-03 23:17:52 +02:00
|
|
|
"noImplicitThis": true, /* Raise error on 'this' expressions with an implied 'any' type. */
|
|
|
|
"alwaysStrict": true, /* Parse in strict mode and emit "use strict" for each source file. */
|
|
|
|
|
2020-06-03 11:18:53 +02:00
|
|
|
"noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
|
2020-06-03 23:17:52 +02:00
|
|
|
"noFallthroughCasesInSwitch": true /* Report errors for fallthrough cases in switch statement. */
|
2020-04-03 14:56:21 +02:00
|
|
|
}
|
|
|
|
}
|