mirror of
https://github.com/enso-org/enso.git
synced 2024-11-24 00:27:16 +03:00
efd33c0928
* Run typecheck and eslint on Lint CI * Address reviews; fix type errors in `.d.ts` files * Remove unused parameter * Run prettier * Fix lint error --------- Co-authored-by: Paweł Buchowski <pawel.buchowski@enso.org>
26 lines
638 B
JSON
26 lines
638 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["DOM"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"noEmit": true,
|
|
"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"
|
|
}
|
|
}
|