12 lines
226 B
JavaScript
12 lines
226 B
JavaScript
|
|
import { build } from "esbuild";
|
||
|
|
|
||
|
|
await build({
|
||
|
|
bundle: true,
|
||
|
|
entryPoints: ["./src/index.ts"],
|
||
|
|
format: "esm",
|
||
|
|
outfile: "./dist/index.mjs",
|
||
|
|
packages: "external",
|
||
|
|
platform: "node",
|
||
|
|
target: "node24",
|
||
|
|
});
|