From f7cb1ada6363c3f4ee71b6e50305366ce9b9f965 Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Fri, 25 Oct 2019 13:01:38 -0500 Subject: [PATCH] build: add "dom" in tsc compilerOptions.lib --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 6e965dd7a..dede4236f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "allowJs": true, "esModuleInterop": true, - "lib": ["ES2017"], + "lib": ["ES2017", "dom"], "module": "CommonJS", "noEmit": true, "noImplicitThis": false,