Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/tsconfig.json')
| -rw-r--r-- | editors/code/tsconfig.json | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/editors/code/tsconfig.json b/editors/code/tsconfig.json index 42e2846858..ee353c28dd 100644 --- a/editors/code/tsconfig.json +++ b/editors/code/tsconfig.json @@ -1,18 +1,18 @@ { + "extends": "@tsconfig/strictest/tsconfig.json", "compilerOptions": { + "esModuleInterop": false, "module": "commonjs", + "moduleResolution": "node16", "target": "es2021", "outDir": "out", "lib": ["es2021"], "sourceMap": true, "rootDir": ".", - "strict": true, - "useUnknownInCatchVariables": false, - "noUnusedLocals": true, - "noUnusedParameters": true, - "noImplicitReturns": true, - "noFallthroughCasesInSwitch": true, - "newLine": "LF" + "newLine": "LF", + + // FIXME: https://github.com/rust-lang/rust-analyzer/issues/15253 + "exactOptionalPropertyTypes": false }, "exclude": ["node_modules", ".vscode-test"], "include": ["src", "tests"] |