initial commit

This commit is contained in:
SowinskiBraeden committed 2026-07-05 16:54:59 -07:00
commit ce8f719a05
106 files changed
+24584

No files matched your search

+11
View File
@@ -0,0 +1,11 @@
import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/index.ts', 'src/db/migrate.ts', 'src/db/seed.ts'],
format: ['esm'],
target: 'node22',
sourcemap: true,
clean: true,
// Bundle the source-only workspace package into the output.
noExternal: ['@reforger-panel/shared'],
});