chore: scaffold carousel package and tooling

This commit is contained in:
Ilia Mashkov
2026-07-01 07:24:35 +03:00
commit f1d6731417
11 changed files with 124 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/index.ts', 'src/dots.ts', 'src/autoplay.ts'],
format: 'esm',
dts: true,
clean: true,
// unminified on purpose — consumer bundlers minify. size-limit measures the
// minified+gzipped size for budgeting.
});