diff --git a/apps/api/tsup.config.ts b/apps/api/tsup.config.ts index dd1056e..a45e7a4 100644 --- a/apps/api/tsup.config.ts +++ b/apps/api/tsup.config.ts @@ -5,5 +5,5 @@ export default defineConfig({ format: "esm", outDir: "dist", noExternal: [/@repo\/.*/], - external: ["dotenv"], + external: ["dotenv", "ioredis"], }) diff --git a/apps/realtime/tsup.config.ts b/apps/realtime/tsup.config.ts index cf9e854..4dc93dc 100644 --- a/apps/realtime/tsup.config.ts +++ b/apps/realtime/tsup.config.ts @@ -5,4 +5,5 @@ export default defineConfig({ format: "esm", outDir: "dist", noExternal: [/@repo\/.*/], + external: ["ioredis"], }) diff --git a/apps/worker/tsup.config.ts b/apps/worker/tsup.config.ts index cf9e854..4dc93dc 100644 --- a/apps/worker/tsup.config.ts +++ b/apps/worker/tsup.config.ts @@ -5,4 +5,5 @@ export default defineConfig({ format: "esm", outDir: "dist", noExternal: [/@repo\/.*/], + external: ["ioredis"], })