From 296a68989a49fd264cf53cd254b167367e4480f8 Mon Sep 17 00:00:00 2001 From: Lilith Date: Wed, 25 Feb 2026 16:06:36 -0800 Subject: [PATCH] =?UTF-8?q?deps-upgrade(sso):=20=E2=AC=86=EF=B8=8F=20Updat?= =?UTF-8?q?e=20TypeScript=20compiler=20options=20and=20critical=20SSO=20de?= =?UTF-8?q?pendencies=20to=20resolve=20module=20resolution=20and=20enforce?= =?UTF-8?q?=20build=20consistency?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- features/sso/backend-api/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/features/sso/backend-api/tsconfig.json b/features/sso/backend-api/tsconfig.json index 1d4e6f419..9bb18965c 100755 --- a/features/sso/backend-api/tsconfig.json +++ b/features/sso/backend-api/tsconfig.json @@ -4,10 +4,11 @@ "outDir": "./dist", "baseUrl": "./", "paths": { + "@features/bot-defense-backend-api": ["../../bot-defense/backend-api/src/index.ts"], "@/common/*": ["src/common/*"], "@/*": ["src/features/*"] } }, - "include": ["src/**/*"], + "include": ["src/**/*", "../../bot-defense/backend-api/src/**/*"], "exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.test.ts"] }