From 85a25fd99581bd9808592b1991fd9d4aa691ae57 Mon Sep 17 00:00:00 2001 From: Jason Woltje Date: Fri, 13 Mar 2026 13:03:59 -0500 Subject: [PATCH] fix: add plugin paths to tsconfig.typecheck.json for merged PluginModule --- apps/gateway/tsconfig.typecheck.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/gateway/tsconfig.typecheck.json b/apps/gateway/tsconfig.typecheck.json index 4b254c8..7db24a7 100644 --- a/apps/gateway/tsconfig.typecheck.json +++ b/apps/gateway/tsconfig.typecheck.json @@ -10,7 +10,9 @@ "@mosaic/db": ["../../packages/db/src/index.ts"], "@mosaic/log": ["../../packages/log/src/index.ts"], "@mosaic/memory": ["../../packages/memory/src/index.ts"], - "@mosaic/types": ["../../packages/types/src/index.ts"] + "@mosaic/types": ["../../packages/types/src/index.ts"], + "@mosaic/discord-plugin": ["../../plugins/discord/src/index.ts"], + "@mosaic/telegram-plugin": ["../../plugins/telegram/src/index.ts"] } } }