mirror of
https://github.com/geoffsee/open-gsio.git
synced 2025-09-08 22:56:46 +00:00
10 lines
180 B
TypeScript
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,
|
|
});
|