From 0f001e70d123e7608f59635abb4e2e676a9ea5d5 Mon Sep 17 00:00:00 2001 From: xCyanGrizzly Date: Wed, 18 Feb 2026 17:20:23 +0100 Subject: [PATCH] fix: add baseUrl to tsconfig for path alias resolution in CI tsc requires baseUrl to be set for paths mapping to work. Without it, @/* path aliases are silently ignored during standalone tsc --noEmit, causing TS2307 errors for @/generated/prisma imports in CI. Co-Authored-By: Claude Opus 4.6 --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 0f39878..8b77395 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -18,6 +18,7 @@ "name": "next" } ], + "baseUrl": ".", "paths": { "@/*": ["./src/*"] }