2020-07-08 19:36:36 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
2021-06-14 11:29:03 +02:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": false,
|
2020-07-08 19:36:36 +02:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2021-04-03 16:54:44 +02:00
|
|
|
"jsx": "react-jsx",
|
2021-07-16 11:00:15 +02:00
|
|
|
"noFallthroughCasesInSwitch": true
|
2020-07-08 19:36:36 +02:00
|
|
|
},
|
2021-06-14 11:29:03 +02:00
|
|
|
"include": ["src", "src/test"]
|
2020-07-08 19:36:36 +02:00
|
|
|
}
|