enso/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
669 B
JSON
Raw Normal View History

{
"compilerOptions": {
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"composite": true,
2023-02-19 03:37:58 +03:00
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
2023-02-19 03:37:58 +03:00
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"moduleResolution": "Bundler",
"noEmit": true,
"allowJs": true,
"strict": true,
2023-02-19 03:37:58 +03:00
"noImplicitAny": true,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
2023-02-19 03:37:58 +03:00
"removeComments": true,
"resolveJsonModule": true,
"sourceMap": true,
"skipLibCheck": true,
"target": "ES2022",
"jsx": "react-jsx"
}
}