From b8bfee7f87eec391268b2ee03b837c743737f8e3 Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Tue, 24 Feb 2026 22:55:42 -0600 Subject: [PATCH] chore: add path mapping for server module in tsconfig.json to improve module resolution in the schedules app --- apps/schedules/tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/schedules/tsconfig.json b/apps/schedules/tsconfig.json index 74f24c8cb..9471d7ca5 100644 --- a/apps/schedules/tsconfig.json +++ b/apps/schedules/tsconfig.json @@ -8,7 +8,10 @@ "outDir": "dist", "jsx": "react-jsx", "jsxImportSource": "hono/jsx", - "declaration": false + "declaration": false, + "paths": { + "@dokploy/server/*": ["../../packages/server/src/*"] + } }, "exclude": ["node_modules", "dist"] }