furality-stream-recorder/build.mjs
Lillith Rose (Device: Lucia) fdeba8fd41
Some checks are pending
Build Docker Image / docker (push) Waiting to run
Test / test (push) Waiting to run
Initial Commit
2025-06-08 14:33:19 -04:00

13 lines
233 B
JavaScript

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",
},
});