enso/app/ide-desktop/tsconfig.json

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

26 lines
657 B
JSON
Raw Normal View History

{
"compilerOptions": {
"lib": ["DOM"],
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": "node",
"checkJs": true,
"strict": true,
2023-02-19 03:37:58 +03:00
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": 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": "ES2019",
"jsx": "react-jsx"
}
}