diff --git a/integrationTests/ts/tsconfig.json b/integrationTests/ts/tsconfig.json index e8505c2bb94..2b5c9796302 100644 --- a/integrationTests/ts/tsconfig.json +++ b/integrationTests/ts/tsconfig.json @@ -1,10 +1,16 @@ { "compilerOptions": { "module": "commonjs", - "lib": ["es2019", "es2020.promise", "es2020.bigint", "es2020.string"], + "lib": [ + "es2019", + "es2020.promise", + "es2020.bigint", + "es2020.string", + "dom" // Workaround for missing web-compatible globals in `@types/node` + ], "noEmit": true, "types": [], "strict": true, "exactOptionalPropertyTypes": true } -} +} \ No newline at end of file