UNPKG

consensys-ui

Version:

Consensys UI component library and design system

16 lines (14 loc) 245 B
import { defineConfig } from 'tsup'; export default defineConfig({ entry: [ 'src/index.ts' ], format: ['esm', 'cjs'], dts: true, sourcemap: true, splitting: true, external: [ 'tailwindcss-animate', ], clean: true, });