Initial Commit
This commit is contained in:
commit
fdeba8fd41
17 changed files with 2290 additions and 0 deletions
13
build.mjs
Normal file
13
build.mjs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import * as esbuild from "esbuild";
|
||||
|
||||
esbuild.build({
|
||||
entryPoints: ["src/index.ts"],
|
||||
bundle: true,
|
||||
outfile: "dist/index.js",
|
||||
platform: "node",
|
||||
target: ["node21"],
|
||||
sourcemap: true,
|
||||
loader: {
|
||||
".node": "copy",
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue