From 61f031389541170c9c2e750de7c256eb78fbcb83 Mon Sep 17 00:00:00 2001 From: kumarabhirup Date: Tue, 3 Mar 2026 15:37:44 -0800 Subject: [PATCH] chore(web): add @repo/* tsconfig path alias for cross-package imports Allows the web app to import shared CLI modules like workspace-seed directly. --- apps/web/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/tsconfig.json b/apps/web/tsconfig.json index abf0a7d99a2..ae8f738581b 100644 --- a/apps/web/tsconfig.json +++ b/apps/web/tsconfig.json @@ -15,7 +15,8 @@ "incremental": true, "plugins": [{ "name": "next" }], "paths": { - "@/*": ["./*"] + "@/*": ["./*"], + "@repo/*": ["../../src/*"] } }, "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],