2022-02-27 00:13:35 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": "app/",
|
|
|
|
"sourceMap": true,
|
2022-03-24 16:08:23 +00:00
|
|
|
"alwaysStrict": true,
|
2022-03-24 15:53:44 +00:00
|
|
|
"strictNullChecks": false,
|
2022-03-24 16:06:49 +00:00
|
|
|
"strictBindCallApply": true,
|
2022-03-24 15:53:44 +00:00
|
|
|
"strictFunctionTypes": false,
|
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
"noImplicitAny": true,
|
2022-03-24 15:55:43 +00:00
|
|
|
"noImplicitThis": true,
|
2022-03-24 15:56:57 +00:00
|
|
|
"useUnknownInCatchVariables": true,
|
2022-02-27 00:13:35 +00:00
|
|
|
"module": "es6",
|
|
|
|
"target": "es5",
|
|
|
|
"jsx": "react",
|
|
|
|
"allowJs": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"experimentalDecorators": true,
|
2022-03-15 13:48:18 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"typeRoots": [ "./types", "./node_modules/@types"]
|
|
|
|
},
|
2022-03-18 20:33:56 +00:00
|
|
|
"exclude": ["node_modules", "types", "**/*.test.*", "**/__mocks__/*", "**/__tests__/*"]
|
2022-02-27 00:13:35 +00:00
|
|
|
}
|