otterscan/tsconfig.json

23 lines
592 B
JSON
Raw Normal View History

2021-07-01 18:21:40 +00:00
{
"compilerOptions": {
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
2021-07-01 18:21:40 +00: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",
"downlevelIteration": true
2021-07-01 18:21:40 +00:00
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
2021-07-01 18:21:40 +00:00
}