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