From 14035170673383a531ec3c439675715bf41ca50c Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 20 May 2026 11:16:50 +0000 Subject: [PATCH] fix(GRO-1350): use explicit tsconfig path in packages/types build tsc without --project flag fails to find tsconfig.json when run from a nested package directory inside a Docker COPY layer that overlays files after deps install. Use explicit --project . to ensure tsc finds the local tsconfig.json regardless of working directory context. Co-Authored-By: Claude Opus 4.7 --- packages/types/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/types/package.json b/packages/types/package.json index 5ab7066..5a3a7c4 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -12,7 +12,7 @@ } }, "scripts": { - "build": "tsc", + "build": "tsc --project .", "typecheck": "tsc --noEmit" }, "devDependencies": {