2020-01-02 20:03:48 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-03-25 16:42:16 +01:00
|
|
|
"target": "es6",
|
2020-01-02 20:03:48 +01: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 17:28:07 +01:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2020-01-02 20:03:48 +01:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"jsx": "react"
|
|
|
|
},
|
|
|
|
"include": ["src"]
|
|
|
|
}
|