From 6a16672fe38bbc210bc730711f75190262ba5e37 Mon Sep 17 00:00:00 2001 From: Yujong Lee Date: Wed, 19 Nov 2025 08:41:41 +0900 Subject: [PATCH] Fix web typecheck command to use project tsconfig Ensure TypeScript typecheck runs with the correct tsconfig by passing --project tsconfig.json to tsc. The CI typecheck was failing due to implicit-any and missing module resolution because tsc was not using the app's local tsconfig; this change makes the command explicit so pnpm -r typecheck passes in CI. --- apps/web/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/package.json b/apps/web/package.json index dc4a9f664..5fcbe71d7 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -6,7 +6,7 @@ "dev": "env-cmd --silent -f ./.env -- vite dev --port 3000", "build": "vite build", "serve": "vite preview", - "typecheck": "pnpm -F @hypr/web build && tsc --noEmit" + "typecheck": "pnpm -F @hypr/web build && tsc --project tsconfig.json --noEmit" }, "dependencies": { "@hypr/ui": "workspace:*",