Files
conventional-semantic-git-t…/esbuild.config.mjs
Timo Behrendt 370fbd39a3
All checks were successful
CD / Release (push) Successful in 39s
chore: initial-commit (#1)
Reviewed-on: #1
Co-authored-by: Timo Behrendt <t.behrendt@t00n.de>
Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
2025-08-17 22:52:19 +02:00

13 lines
225 B
JavaScript

import { build } from "esbuild";
await build({
entryPoints: ["src/index.ts"],
bundle: true,
platform: "node",
target: "node20",
outfile: "dist/index.js",
sourcemap: false,
minify: true,
logLevel: "info",
});