UNPKG

react-quantity-input

Version:

A simple, customizable quantity input component for React that allows users to increment/decrement numeric values.

11 lines (9 loc) 195 B
import { defineConfig } from 'tsup'; export default defineConfig(() => ({ entry: ['src/index.tsx'], outDir: 'dist', format: ['cjs', 'esm'], clean: true, dts: true, minify: true }));