use turbo convention

This commit is contained in:
Elio Bischof
2025-07-17 13:20:50 +02:00
parent 028a657fd0
commit 706a966f22
381 changed files with 591 additions and 1260 deletions

View File

@@ -0,0 +1,13 @@
import { defineConfig, Options } from "tsup";
export default defineConfig((options: Options) => ({
entry: ["src/index.ts", "src/v1.ts", "src/v2.ts", "src/v3alpha.ts", "src/node.ts", "src/web.ts"],
format: ["esm", "cjs"],
treeshake: false,
splitting: true,
dts: true,
minify: false,
clean: true,
sourcemap: true,
...options,
}));