chore(web): add @repo/* tsconfig path alias for cross-package imports

Allows the web app to import shared CLI modules like workspace-seed directly.
This commit is contained in:
kumarabhirup 2026-03-03 15:37:44 -08:00
parent 501276bdea
commit 61f0313895
No known key found for this signature in database
GPG Key ID: DB7CA2289CAB0167

View File

@ -15,7 +15,8 @@
"incremental": true,
"plugins": [{ "name": "next" }],
"paths": {
"@/*": ["./*"]
"@/*": ["./*"],
"@repo/*": ["../../src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],