From c3c99ad6c433e4441158339248b42ea7ce327fd8 Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 20 May 2026 12:40:38 +0000 Subject: [PATCH] fix(docker): use -p flag for explicit tsconfig path Both -p . and --project . should be equivalent, but the Docker build appears to resolve them differently. Use -p for consistency. Co-Authored-By: Paperclip --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fe6c0ad..8c12780 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "type": "module", "scripts": { "dev": "tsx watch src/index.ts", - "build": "tsc --project .", + "build": "tsc -p .", "start": "node dist/index.js", "lint": "eslint src --ext .ts", "typecheck": "tsc --noEmit",