first commit

This commit is contained in:
2026-04-01 15:16:25 +02:00
commit a3a136c65d
9 changed files with 236 additions and 0 deletions

13
tsup.config.ts Normal file
View File

@@ -0,0 +1,13 @@
import { defineConfig } from "tsup";
export default defineConfig({
tsconfig: "tsconfig.json",
entry: {
"server/index": "server/index.ts"
},
format: ["esm"],
dts: true,
sourcemap: true,
clean: true,
outDir: "dist"
});