2020-02-26 20:00:59 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-05-10 23:49:04 +03:00
|
|
|
"allowJs": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"baseUrl": "src",
|
2023-04-17 19:28:00 +03:00
|
|
|
"composite": true,
|
2022-05-10 23:49:04 +03:00
|
|
|
"downlevelIteration": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"isolatedModules": true,
|
2021-03-30 10:51:37 +03:00
|
|
|
"jsx": "react-jsx",
|
2023-04-18 00:26:00 +03:00
|
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
2022-05-10 23:49:04 +03:00
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
2022-02-08 22:04:48 +03:00
|
|
|
"noEmit": true,
|
2022-05-10 23:49:04 +03:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
2023-04-18 00:26:00 +03:00
|
|
|
"target": "ESNext",
|
2023-04-25 02:00:04 +03:00
|
|
|
"tsBuildInfoFile": "node_modules/.cache/tsbuildinfo/build", // avoid clobbering the cypress tsbuildinfo
|
2022-09-30 20:09:06 +03:00
|
|
|
"types": ["jest"],
|
2022-05-10 23:49:04 +03:00
|
|
|
"useUnknownInCatchVariables": false
|
2020-02-26 20:00:59 +03:00
|
|
|
},
|
2023-04-25 02:00:04 +03:00
|
|
|
"exclude": ["node_modules"],
|
|
|
|
"include": ["src/**/*", "src/**/*.json"],
|
|
|
|
"watchOptions": {
|
|
|
|
"excludeDirectories": ["node_modules"]
|
|
|
|
}
|
2020-02-26 20:00:59 +03:00
|
|
|
}
|