Files
ironmount/apps/server/build.ts
2025-11-10 06:52:14 +01:00

14 lines
220 B
TypeScript

await Bun.build({
entrypoints: ["./src/index.ts"],
outdir: "./dist",
target: "bun",
env: "disable",
sourcemap: true,
minify: {
whitespace: true,
identifiers: false,
syntax: true,
},
external: ["ssh2"],
});