From 4dbe3a86f2e0f0664bd85fd3dadd6bd5161f1eb2 Mon Sep 17 00:00:00 2001 From: einhornimmond Date: Thu, 27 Nov 2025 17:22:28 +0100 Subject: [PATCH] fix missing includes --- backend/tsconfig.json | 4 +++- federation/tsconfig.json | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/backend/tsconfig.json b/backend/tsconfig.json index b71bf1938..454d4853c 100644 --- a/backend/tsconfig.json +++ b/backend/tsconfig.json @@ -87,7 +87,9 @@ "forceConsistentCasingInFileNames": true, /* Disallow inconsistently-cased references to the same file. */ }, "include": [ - "../core/src/types" + "../core/src/types", + "src", + "test" ], "ts-node": { "swc": true diff --git a/federation/tsconfig.json b/federation/tsconfig.json index c42e39505..4082df448 100644 --- a/federation/tsconfig.json +++ b/federation/tsconfig.json @@ -87,6 +87,8 @@ }, "include": [ "../core/src/types", + "src", + "test" ], "ts-node": { "swc": true