13 lines
224 B
JavaScript
13 lines
224 B
JavaScript
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",
|
|
});
|