mirror of
https://github.com/enso-org/enso.git
synced 2024-11-24 00:27:16 +03:00
fa23e800e5
- prefer `null`, `!= null` and `== null` instead of `undefined` - disallow `as`, add comments for the existing usages of `as` - make `tsconfig.json` a bit stricter - minor fixes to other files that were missed # Important Notes N/A
30 lines
712 B
JSON
30 lines
712 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["DOM"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"checkJs": true,
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"exactOptionalPropertyTypes": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"target": "ES2019",
|
|
"jsx": "react-jsx"
|
|
},
|
|
"ts-node": {
|
|
"esm": true,
|
|
"files": true
|
|
}
|
|
}
|