enso/tsconfig.json
2024-10-14 14:57:02 +02:00

23 lines
594 B
JSON

{
"compilerOptions": {
"lib": ["ES2021", "DOM", "DOM.Iterable"],
"composite": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"noEmit": true,
"strict": true,
"noImplicitAny": true,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"removeComments": true,
"skipLibCheck": true,
"target": "ES2021",
"jsx": "react-jsx"
}
}