From 8b78d890e44dcb12023546db786ebad7cf55e702 Mon Sep 17 00:00:00 2001 From: barsa Date: Tue, 18 Nov 2025 14:41:44 +0900 Subject: [PATCH] Add support directory to TypeScript configuration - Included "support/**/*" in the tsconfig.json paths to ensure TypeScript recognizes and compiles files within the support directory, enhancing module integration and project structure. --- packages/domain/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/domain/tsconfig.json b/packages/domain/tsconfig.json index 56395307..58d29130 100644 --- a/packages/domain/tsconfig.json +++ b/packages/domain/tsconfig.json @@ -19,6 +19,7 @@ "payments/**/*", "sim/**/*", "subscriptions/**/*", + "support/**/*", "toolkit/**/*", "index.ts" ],