mirror of
https://github.com/enso-org/enso.git
synced 2024-12-18 22:21:48 +03:00
16765455c2
Partially closes: cloud-v2/1592 Closes: https://github.com/enso-org/cloud-v2/issues/1606 This PR also adds needed configuration for unit tests and adjust it to run using vscode vite extension
27 lines
750 B
JSON
27 lines
750 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"
|
|
},
|
|
"exclude": ["tools", "node_modules", "lib", "engine", "test", "dist", "docs"]
|
|
}
|