From 8924830e85039c10f4bddd6bc0c9abfbdfaa8325 Mon Sep 17 00:00:00 2001 From: Ildiko Eigel Date: Mon, 5 Jan 2026 14:22:50 +0100 Subject: [PATCH] build: enable isolatedModules in tsconfig to fix compiler warning --- package.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 90f240167..b592265f8 100644 --- a/package.json +++ b/package.json @@ -81,7 +81,12 @@ ], "preset": "ts-jest", "testEnvironment": "node", - "testResultsProcessor": "jest-junit" + "testResultsProcessor": "jest-junit", + "globals": { + "ts-jest": { + "isolatedModules": true + } + } }, "jest-junit": { "suiteName": "Generated unit tests",