From c3e340f8596a80106ddaf232b3d7efc625f69c10 Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Thu, 29 Jan 2026 20:41:39 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore:=20fix=20missing=20shared?= =?UTF-8?q?=20package=20dependencies?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add missing workspace dependencies: - telegram-nutriphi-bot: @manacore/shared-drizzle-config - telegram-todo-bot: @manacore/shared-drizzle-config - questions/backend: @manacore/shared-tsconfig + fix tsconfig paths Fixes pre-commit type-check failures. --- apps/questions/apps/backend/package.json | 1 + apps/questions/apps/backend/tsconfig.json | 9 +++++++-- services/telegram-nutriphi-bot/package.json | 1 + services/telegram-todo-bot/package.json | 1 + 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/apps/questions/apps/backend/package.json b/apps/questions/apps/backend/package.json index 468eec298..997ef5940 100644 --- a/apps/questions/apps/backend/package.json +++ b/apps/questions/apps/backend/package.json @@ -33,6 +33,7 @@ "rxjs": "^7.8.1" }, "devDependencies": { + "@manacore/shared-tsconfig": "workspace:*", "@nestjs/cli": "^10.4.9", "@nestjs/schematics": "^10.2.3", "@types/express": "^5.0.0", diff --git a/apps/questions/apps/backend/tsconfig.json b/apps/questions/apps/backend/tsconfig.json index d5a090ee5..9736ed5e4 100644 --- a/apps/questions/apps/backend/tsconfig.json +++ b/apps/questions/apps/backend/tsconfig.json @@ -1,6 +1,11 @@ { "extends": "@manacore/shared-tsconfig/nestjs", "compilerOptions": { - "target": "ES2022" - } + "target": "ES2022", + "rootDir": "./src", + "outDir": "./dist", + "baseUrl": "./" + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist"] } diff --git a/services/telegram-nutriphi-bot/package.json b/services/telegram-nutriphi-bot/package.json index 921febaa9..027d9281a 100644 --- a/services/telegram-nutriphi-bot/package.json +++ b/services/telegram-nutriphi-bot/package.json @@ -32,6 +32,7 @@ "telegraf": "^4.16.3" }, "devDependencies": { + "@manacore/shared-drizzle-config": "workspace:*", "@nestjs/cli": "^10.4.9", "@nestjs/schematics": "^10.2.3", "@types/node": "^22.10.5", diff --git a/services/telegram-todo-bot/package.json b/services/telegram-todo-bot/package.json index 78ab4f5a0..c35742d68 100644 --- a/services/telegram-todo-bot/package.json +++ b/services/telegram-todo-bot/package.json @@ -32,6 +32,7 @@ "telegraf": "^4.16.3" }, "devDependencies": { + "@manacore/shared-drizzle-config": "workspace:*", "@nestjs/cli": "^10.4.9", "@nestjs/schematics": "^10.2.3", "@types/node": "^22.10.5",