From 5e42887f36f8902d687e11426ec1b457c6f33315 Mon Sep 17 00:00:00 2001 From: onissen <56229919+onissen@users.noreply.github.com> Date: Sun, 1 Dec 2024 00:42:23 +0100 Subject: [PATCH] feat(cockpit): Define absolute Path for App-Wide imports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Importe von Komponenten aus northware-cockpit können innerhalb der App über @/ importiert werden. --- apps/northware-cockpit/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/northware-cockpit/tsconfig.json b/apps/northware-cockpit/tsconfig.json index a10503a..7782463 100644 --- a/apps/northware-cockpit/tsconfig.json +++ b/apps/northware-cockpit/tsconfig.json @@ -4,6 +4,7 @@ "plugins": [{ "name": "next" }], "baseUrl": ".", "paths": { + "@/*": ["./src/*"], "@northware/ui/*": ["../../packages/ui/src/*"] } },