From e007dd2009a7504f18fe764396902da852d6f4e1 Mon Sep 17 00:00:00 2001 From: Igor Savin Date: Wed, 1 Dec 2021 01:43:27 +0200 Subject: [PATCH] Fix JSDOM TS issue. (#1251) See https://github.com/facebook/jest/issues/12098 --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index be75b109a..03669e467 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "target": "es6", - "lib": [ "es2015" ], + "lib": [ "es2015", "dom" ], "module": "commonjs", "noEmit": true, "strict": true,