intial commit

This commit is contained in:
2025-12-11 21:35:04 -06:00
parent c6e47f7873
commit c3421a82d6
7 changed files with 1711 additions and 1 deletions

12
esbuild.config.mjs Normal file
View File

@@ -0,0 +1,12 @@
import { build } from "esbuild";
await build({
entryPoints: ["backend/app.ts"],
outfile: "dist/app.js",
bundle: true,
platform: "node",
target: ["node24"],
minify: true,
legalComments: "none",
format: "esm",
});