oyster/packages/lending/tsconfig.json

23 lines
565 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
2021-02-08 19:17:27 -08:00
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
2021-02-08 19:17:27 -08:00
"isolatedModules": true,
"downlevelIteration": true,
"noEmit": true,
"jsx": "react",
2021-02-08 19:17:27 -08:00
"typeRoots": ["../../types"]
2021-02-06 19:00:56 -08:00
},
2021-02-08 19:17:27 -08:00
"include": ["src"]
}