otterscan/tsconfig.json

22 lines
559 B
JSON
Raw Normal View History

2021-07-01 18:21:40 +00:00
{
"compilerOptions": {
"target": "ESNext",
2022-08-04 22:39:32 +00:00
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
2021-07-01 18:21:40 +00:00
"skipLibCheck": true,
2022-08-04 22:39:32 +00:00
"esModuleInterop": false,
2021-07-01 18:21:40 +00:00
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
2022-08-04 22:39:32 +00:00
"module": "ESNext",
"moduleResolution": "Node",
2021-07-01 18:21:40 +00:00
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
2022-08-04 22:39:32 +00:00
"jsx": "react-jsx"
2021-07-01 18:21:40 +00:00
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
2021-07-01 18:21:40 +00:00
}