From 43f17dc612724a247aff955b1c68df46584f4bb8 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 20 May 2026 12:29:40 +0000 Subject: [PATCH] fix(docker): use explicit tsconfig in api build command tsc without --project flag picks up tsconfig.json from the workspace root, which lacks the packages/* paths needed for the monorepo build. Explicit --project . ensures tsc uses the local tsconfig.json. Co-Authored-By: Paperclip --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e8d4488..fe6c0ad 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "type": "module", "scripts": { "dev": "tsx watch src/index.ts", - "build": "tsc", + "build": "tsc --project .", "start": "node dist/index.js", "lint": "eslint src --ext .ts", "typecheck": "tsc --noEmit",