Files
open-gsio/packages/server/build.ts
2025-06-24 17:32:59 -04:00

10 lines
180 B
TypeScript

// handles builds the server into js
await Bun.build({
entrypoints: ['./server.ts'],
outdir: './build',
minify: true,
target: 'node',
splitting: true,
throw: true,
});