2021-02-01 00:55:25 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
2021-03-05 19:56:51 -05:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
|
|
"downlevelIteration": true,
|
2021-02-01 00:55:25 -05:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"jsx": "react-jsx"
|
|
|
|
},
|
2021-03-05 19:56:51 -05:00
|
|
|
"include": ["src"]
|
2021-02-01 00:55:25 -05:00
|
|
|
}
|