From 899038a9bd692b5bf33bb9b015833becf4458a6e Mon Sep 17 00:00:00 2001 From: Tim Haasdyk Date: Mon, 3 Oct 2022 15:44:59 +0200 Subject: [PATCH] Prevent TS warnings for using node types in tests. --- test/e2e/tsconfig.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/e2e/tsconfig.json b/test/e2e/tsconfig.json index 62b5a02a0d..af8c783484 100644 --- a/test/e2e/tsconfig.json +++ b/test/e2e/tsconfig.json @@ -16,6 +16,9 @@ "sourceMap": true, "suppressImplicitAnyIndexErrors": true, "target": "ES6", + "types": [ + "node" + ], "typeRoots": [ "node_modules/@types" ]