initial
Publish npm package / publish (push) Successful in 19s

This commit is contained in:
Senko-san
2026-06-12 13:30:02 +03:00
commit fec09570f8
152 changed files with 23285 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { defineConfig } from 'tsup';
export default defineConfig({
entry: { index: 'src/index.ts' },
format: ['esm', 'cjs'],
dts: true,
clean: true,
treeshake: true,
sourcemap: true,
// react/react-dom come from the host app; radix-ui + phosphor are
// declared dependencies and are externalized automatically by tsup.
external: ['react', 'react-dom'],
});