import { build } from "esbuild"; await build({ entryPoints: ["backend/app.ts"], outfile: "dist/index.cjs", bundle: true, platform: "node", target: ["node24"], minify: true, legalComments: "none", format: "esm", });