mirror of
https://github.com/enso-org/enso.git
synced 2024-11-23 16:18:23 +03:00
b286adaae4
# Important Notes The command to run the gui dev environment has been changed. Invoking the old command will print a message about that. From now on, use `pnpm dev:gui2` in repository root.
27 lines
693 B
JSON
27 lines
693 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ES2021", "DOM", "DOM.Iterable"],
|
|
"composite": true,
|
|
"rootDir": "../..",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"noEmit": true,
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"target": "ES2021",
|
|
"jsx": "react-jsx"
|
|
}
|
|
}
|