2022-05-23 19:07:42 +00:00
|
|
|
{
|
2023-03-03 20:07:19 +00:00
|
|
|
"extends": "./tsconfig.extend.json",
|
2022-12-03 21:37:21 +00:00
|
|
|
"compilerOptions": {
|
2023-11-30 17:39:57 +00:00
|
|
|
"target": "es2015",
|
2022-12-03 21:37:21 +00:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"esnext"
|
|
|
|
],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2023-10-17 13:43:31 +00:00
|
|
|
"jsx": "react-jsx",
|
2022-12-03 21:37:21 +00:00
|
|
|
},
|
|
|
|
"include": [
|
2023-10-17 13:43:31 +00:00
|
|
|
"src",
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"cypress.config.ts",
|
|
|
|
"cypress",
|
|
|
|
"node_modules",
|
2022-12-03 21:37:21 +00:00
|
|
|
]
|
2023-10-17 13:43:31 +00:00
|
|
|
}
|