From 494e111b2c9e046c19d9eb8be950a1c92aab373c Mon Sep 17 00:00:00 2001 From: Jeppe Reinhold Date: Wed, 17 Jan 2024 10:11:00 +0100 Subject: [PATCH] add node to tsconfig types array --- code/builders/builder-webpack5/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/builders/builder-webpack5/tsconfig.json b/code/builders/builder-webpack5/tsconfig.json index 5b3f3a56a68d..4ea5f98a845a 100644 --- a/code/builders/builder-webpack5/tsconfig.json +++ b/code/builders/builder-webpack5/tsconfig.json @@ -2,7 +2,8 @@ "extends": "../../tsconfig.json", "compilerOptions": { "strict": true, - "skipLibCheck": true + "skipLibCheck": true, + "types": ["jest", "node"] }, "include": ["src/**/*"] }