restructure

move to bun workspaces
bump zod
begin adding fluxer
This commit is contained in:
2026-02-17 18:04:32 +01:00
parent 6608bd6ee7
commit 6ce1fdf67d
79 changed files with 1106 additions and 79 deletions

15
core/tsdown.config.ts Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from "tsdown";
export default defineConfig({
entry: [
"./src/index.ts",
"./src/entities/**/*.ts",
"./src/lib/**/*.ts",
"./src/api/**/*.ts",
"./src/db/**/*.ts",
],
format: "esm",
dts: true,
exports: true,
fixedExtension: false,
});