From 1c38434b6ef09967d0169cfaea34d94a6c3fbfb6 Mon Sep 17 00:00:00 2001 From: Mathis HERRIOT <197931332+0x485254@users.noreply.github.com> Date: Tue, 20 Jan 2026 15:43:34 +0100 Subject: [PATCH] build(tsconfig): enable `isolatedModules` in TypeScript config --- backend/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/tsconfig.json b/backend/tsconfig.json index 3121715..8af9a4e 100644 --- a/backend/tsconfig.json +++ b/backend/tsconfig.json @@ -4,7 +4,7 @@ "moduleResolution": "nodenext", "resolvePackageJsonExports": true, "esModuleInterop": true, - "isolatedModules": false, + "isolatedModules": true, "declaration": true, "removeComments": true, "emitDecoratorMetadata": true,