switch to tsdown for building library

This commit is contained in:
Joel Wetzell
2026-05-15 11:29:42 -05:00
parent a2fbd2a2b0
commit 3ab3fcbcd8
16 changed files with 923 additions and 57 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from 'tsdown'
export default defineConfig({
entry: 'src/index.ts',
exports: true,
format: {
esm: {},
cjs: {},
},
})