From c00b0d2393c185d4e850834219e5e0b32c48914c Mon Sep 17 00:00:00 2001 From: CrazyMax <1951866+crazy-max@users.noreply.github.com> Date: Mon, 5 Jan 2026 13:45:55 +0100 Subject: [PATCH] set isolatedModules=true to fix ts-jest TS151002 warning Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com> --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 52f1c69..9dd4a98 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,6 +3,7 @@ "esModuleInterop": true, "target": "es6", "module": "node16", + "isolatedModules": true, "strict": true, "declaration": true, "sourceMap": true,