2020-01-03 00:03:48 +05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-03-25 11:42:16 -04:00
|
|
|
"target": "es6",
|
2020-01-03 00:03:48 +05:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
2020-10-28 18:28:07 +02:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2020-01-03 00:03:48 +05:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2020-12-20 14:40:11 +02:00
|
|
|
"jsx": "react-jsx"
|
2020-01-03 00:03:48 +05:00
|
|
|
},
|
|
|
|
"include": ["src"]
|
|
|
|
}
|