From 7e3be9507c4a1791479e70e6b012691b9c573f11 Mon Sep 17 00:00:00 2001 From: Andreas B <6439218+YouKnowBlom@users.noreply.github.com> Date: Sat, 21 Nov 2020 18:46:00 +0100 Subject: [PATCH] Update tsconfig to include dom --- tsconfig.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index 8ef1a3d1..015ba19c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,10 @@ "target": "ES2018", "module": "ESNext", "moduleResolution": "Node", + "lib": [ + "dom", + "ES2018" + ], "allowJs": true, "sourceMap": true, "outDir": "./dist/",