2019-05-18 14:37:35 -04:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2019-11-25 00:40:57 -05:00
|
|
|
"target": "es2017",
|
2019-05-18 14:37:35 -04:00
|
|
|
"module": "commonjs",
|
2020-06-25 10:07:30 -04:00
|
|
|
"lib": ["es2017","es2019.array", "DOM"],
|
2019-05-18 14:37:35 -04:00
|
|
|
"declaration": true,
|
2019-05-20 12:59:04 -04:00
|
|
|
"declarationMap": true,
|
2020-08-17 12:03:21 -04:00
|
|
|
"jsx": "react",
|
2019-05-18 14:37:35 -04:00
|
|
|
|
|
|
|
|
/* Strict Type-Checking Options */
|
|
|
|
|
"strict": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
|
"noImplicitThis": true,
|
|
|
|
|
"alwaysStrict": true,
|
|
|
|
|
|
|
|
|
|
/* Additional Checks */
|
2020-11-26 06:16:46 -05:00
|
|
|
"noUnusedLocals": false, // ensured by eslint, should not block compilation
|
2019-05-18 14:37:35 -04:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
|
2020-08-07 05:47:43 -04:00
|
|
|
/* Disabled on purpose (handled by ESLint, should not block compilation) */
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
|
2019-05-18 14:37:35 -04:00
|
|
|
/* Module Resolution Options */
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"esModuleInterop": true,
|
2019-05-20 12:59:04 -04:00
|
|
|
|
2019-05-18 14:37:35 -04:00
|
|
|
/* Advanced Options */
|
|
|
|
|
"resolveJsonModule": true
|
|
|
|
|
},
|
2019-05-20 12:59:04 -04:00
|
|
|
"exclude": ["node_modules", "**/__tests__/**/*", "**/lib/**/*"]
|
2019-05-18 14:37:35 -04:00
|
|
|
}
|