Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'editors/code/tsconfig.json')
| -rw-r--r-- | editors/code/tsconfig.json | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/editors/code/tsconfig.json b/editors/code/tsconfig.json index 04bd456937..4b107a5d25 100644 --- a/editors/code/tsconfig.json +++ b/editors/code/tsconfig.json @@ -3,6 +3,7 @@ "compilerOptions": { "esModuleInterop": false, "module": "commonjs", + "moduleResolution": "node16", "target": "es2021", "outDir": "out", "lib": ["es2021"], @@ -12,9 +13,7 @@ // These disables some enhancement type checking options // to update typescript version without any code change. "useUnknownInCatchVariables": false, - "exactOptionalPropertyTypes": false, - "noPropertyAccessFromIndexSignature": false, - "noUncheckedIndexedAccess": false + "exactOptionalPropertyTypes": false }, "exclude": ["node_modules", ".vscode-test"], "include": ["src", "tests"] |