fix(GRO-1350): use explicit tsconfig path in packages/types build
CI / Lint & Typecheck (pull_request) Failing after 13s
CI / Test (pull_request) Successful in 21s
CI / Build & Push Docker Image (pull_request) Has been skipped

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 <noreply@anthropic.com>
This commit is contained in:
2026-05-20 11:16:50 +00:00
committed by Flea Flicker [agent]
parent 9c5e470737
commit 1403517067
+1 -1
View File
@@ -12,7 +12,7 @@
}
},
"scripts": {
"build": "tsc",
"build": "tsc --project .",
"typecheck": "tsc --noEmit"
},
"devDependencies": {