From 8cfbcd35cdb63e69789c23a855010ce28ea5ef00 Mon Sep 17 00:00:00 2001 From: Carlos Valente Date: Fri, 23 Jan 2026 21:25:22 +0100 Subject: [PATCH] fix: tsconfig references for utility tests --- apps/client/tsconfig.json | 1 + apps/client/tsconfig.tests.json | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/apps/client/tsconfig.json b/apps/client/tsconfig.json index 2d20ba7df..4ea66fe3d 100644 --- a/apps/client/tsconfig.json +++ b/apps/client/tsconfig.json @@ -2,6 +2,7 @@ "extends": "../../tsconfig.common.json", "compilerOptions": { "target": "esnext", + "composite": true, "lib": [ "dom", "dom.iterable", diff --git a/apps/client/tsconfig.tests.json b/apps/client/tsconfig.tests.json index d62d5243f..3c993fe9b 100644 --- a/apps/client/tsconfig.tests.json +++ b/apps/client/tsconfig.tests.json @@ -29,6 +29,11 @@ "src/**/*.spec.ts", "src/**/*.spec.tsx", ], + "references": [ + { + "path": "./tsconfig.json" + } + ], "typeRoots": [ "./src/declarations/**" ]