From 7064e93d96bd5a9f3b57adef2e341a8a83a3b1d0 Mon Sep 17 00:00:00 2001 From: Dan Drory Date: Wed, 18 Dec 2024 13:34:58 +1100 Subject: [PATCH] fix types in tsconfig --- packages/sku/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sku/tsconfig.json b/packages/sku/tsconfig.json index e8816080d..f145afcc8 100644 --- a/packages/sku/tsconfig.json +++ b/packages/sku/tsconfig.json @@ -13,7 +13,7 @@ "skipLibCheck": true, "esModuleInterop": true, "declaration": true, - "types": ["webpack/module"], + "types": ["webpack/module", "jest", "node"], "lib": ["ESNext", "DOM"], }, "include": ["./src/**/*"],