enso/app/ide-desktop/tsconfig.json

28 lines
688 B
JSON
Raw Normal View History

{
"compilerOptions": {
"lib": ["DOM"],
"composite": true,
"rootDir": "../..",
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,
"checkJs": 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": "ES2019",
"jsx": "react-jsx"
}
}