fixed breaking bug

This commit is contained in:
2024-03-25 02:24:39 +01:00
parent db991473b8
commit 7e4cb17c72
3 changed files with 43 additions and 44 deletions

View File

@@ -1,9 +1,9 @@
import dts from "bun-plugin-dts";
import dts from 'bun-plugin-dts';
await Bun.build({
entrypoints: ["./src/index.ts"],
outdir: "./dist",
target: "node",
entrypoints: ['./src/index.ts'],
outdir: './dist',
target: 'node',
minify: true,
plugins: [dts()],
});