mirror of
https://github.com/enso-org/enso.git
synced 2024-12-29 04:13:33 +03:00
c0679afa07
This PR addresses two issues: * problems with importing projects on macOS, * console Window appearing when Project Manager is spawned.
25 lines
618 B
JSON
25 lines
618 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["DOM"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"target": "ES2019",
|
|
"jsx": "react-jsx"
|
|
}
|
|
}
|