first commit

This commit is contained in:
2026-04-01 15:17:46 +02:00
commit d50ab5f7bf
19 changed files with 2554 additions and 0 deletions

26
tsup.config.ts Normal file
View File

@@ -0,0 +1,26 @@
import { defineConfig } from "tsup";
export default defineConfig({
tsconfig: "tsconfig.json",
entry: {
"react/index": "react/index.ts",
"server/index": "server/index.ts"
},
format: ["esm"],
dts: true,
sourcemap: true,
clean: true,
outDir: "dist",
external: [
"@auth/express",
"@auth/prisma-adapter",
"@chakra-ui/react",
"@prisma/client",
"express",
"react",
"react-dom",
"react-icons",
"react-router-dom",
"zod"
]
});