panorama/tsconfig.json

22 lines
559 B
JSON
Raw Normal View History

2023-03-28 21:36:36 +00:00
{
"compilerOptions": {
"target": "ESNext",
2023-06-13 00:13:24 +00:00
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
2023-03-28 21:36:36 +00:00
"allowSyntheticDefaultImports": true,
2023-06-13 00:13:24 +00:00
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
2023-03-30 01:56:52 +00:00
"isolatedModules": true,
2023-06-13 00:13:24 +00:00
"noEmit": true,
"jsx": "react-jsx"
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
2023-03-28 21:36:36 +00:00
}