chore: add path mapping for server module in tsconfig.json to improve module resolution in the schedules app

This commit is contained in:
Mauricio Siu
2026-02-24 22:55:42 -06:00
parent 2a3ae89f5e
commit b8bfee7f87

View File

@@ -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"]
}