2019-11-18 23:37:36 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"esnext"
|
|
|
|
],
|
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2020-12-16 01:30:03 +00:00
|
|
|
"jsx": "react-jsx",
|
2020-11-07 02:06:18 +00:00
|
|
|
"noFallthroughCasesInSwitch": true
|
2019-11-18 23:37:36 +00:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src",
|
|
|
|
"types"
|
|
|
|
]
|
2020-11-07 02:06:18 +00:00
|
|
|
}
|