From 85b1b143b3254ca7074b3c90b93b75150ca959db Mon Sep 17 00:00:00 2001 From: Matronator <5470780+matronator@users.noreply.github.com> Date: Tue, 27 Jul 2021 06:51:25 +0200 Subject: [PATCH] Update tsconfig.json Fixes TypeScript error: Property 'hot' does not exist on type 'NodeModule'. --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 5e8158f..abc6a30 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,8 @@ "strict": true, "alwaysStrict": true, "moduleResolution": "node", - "esModuleInterop": true + "esModuleInterop": true, + "types": ["webpack-env"] }, "include": ["**/*"] }