2020-02-26 12:00:59 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-05-10 13:49:04 -07:00
|
|
|
"allowJs": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"baseUrl": "src",
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"isolatedModules": true,
|
2021-03-30 03:51:37 -04:00
|
|
|
"jsx": "react-jsx",
|
2022-05-10 13:49:04 -07:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
2022-02-08 11:04:48 -08:00
|
|
|
"noEmit": true,
|
2022-05-10 13:49:04 -07:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"target": "es5",
|
2022-09-30 13:09:06 -04:00
|
|
|
"types": ["jest"],
|
2022-05-10 13:49:04 -07:00
|
|
|
"useUnknownInCatchVariables": false
|
2020-02-26 12:00:59 -05:00
|
|
|
},
|
2021-02-14 10:44:11 +00:00
|
|
|
"exclude": ["node_modules", "cypress"],
|
2021-10-04 11:01:05 -07:00
|
|
|
"include": ["src/**/*"]
|
2020-02-26 12:00:59 -05:00
|
|
|
}
|