mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 11:52:59 +03:00
10e1b76f57
Fixes #10059 https://github.com/user-attachments/assets/a528e26a-b388-4a2a-9bf4-3ccc734373f6 # Important Notes * I put the logic for project's files management to a single composable "projectFiles"
26 lines
669 B
JSON
26 lines
669 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"composite": true,
|
|
"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": "ES2022",
|
|
"jsx": "react-jsx"
|
|
}
|
|
}
|