From 004f71d88d06015f2302e6f1d2c852bb3bd298ea Mon Sep 17 00:00:00 2001 From: Tom Theisel Date: Sat, 30 Jul 2022 19:40:06 +0100 Subject: [PATCH] fix: add `dom` to `compilerOptions.lib` --- component/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/component/tsconfig.json b/component/tsconfig.json index 42643c9..dbe8ba0 100644 --- a/component/tsconfig.json +++ b/component/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "lib": ["ESNext"], + "lib": ["ESNext", "DOM"], "declaration": true, "target": "ESNext", "module": "ESNext",