chore: scaffold carousel package and tooling

This commit is contained in:
Ilia Mashkov
2026-07-01 07:24:35 +03:00
parent 0cf08f357a
commit e8a6d2f678
13 changed files with 124 additions and 854 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.
});