From 94a75e45ac5db2614dc607ee6066388eaf729bb7 Mon Sep 17 00:00:00 2001 From: Georgii Dolzhykov Date: Wed, 1 Jan 2025 02:21:51 +0200 Subject: [PATCH] Disable type-checking in Jest to unblock running tests --- jest.config.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index 3abcbd94..43a2d339 100644 --- a/jest.config.js +++ b/jest.config.js @@ -1,5 +1,7 @@ /** @type {import('ts-jest').JestConfigWithTsJest} */ module.exports = { - preset: "ts-jest", + transform: { + "^.+\\.tsx?$": ["ts-jest", { isolatedModules: true }], + }, testEnvironment: "node", };