2021-02-02 19:29:58 -08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-02-02 22:25:54 -08:00
|
|
|
"target": "esnext",
|
2021-02-02 21:38:57 -08:00
|
|
|
"module": "esnext",
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"esnext"
|
|
|
|
],
|
|
|
|
"allowJs": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"jsx": "react-jsx"
|
|
|
|
},
|
|
|
|
"ts-node": {
|
|
|
|
"compilerOptions": {
|
2021-02-02 22:25:54 -08:00
|
|
|
"target": "esnext",
|
2021-02-02 21:38:57 -08:00
|
|
|
"module": "commonjs"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src"
|
2021-02-06 22:45:28 -08:00
|
|
|
]
|
2021-02-02 19:29:58 -08:00
|
|
|
}
|