feat: Add working building and bundling system

This commit is contained in:
Jesse Wierzbinski 2023-12-07 22:25:31 -10:00
parent 2333bbead9
commit df47fa4750
No known key found for this signature in database
6 changed files with 192 additions and 23 deletions

8
build.ts Normal file
View file

@ -0,0 +1,8 @@
await Bun.build({
entrypoints: ["./index.ts"],
outdir: "./dist",
target: "bun",
splitting: true,
minify: false,
external: ["bullmq", "@prisma/client"],
});