socket/build.ts
2025-01-07 14:58:16 -05:00

9 lines
149 B
TypeScript

import dts from "bun-plugin-dts";
await Bun.build({
entrypoints: ["./src/index.ts"],
outdir: "./dist",
plugins: [dts()],
target: "browser",
});