rinlab
Version:
A comprehensive React component library for Solana blockchain interfaces with a nostalgic retro-computing aesthetic
23 lines (22 loc) • 418 B
text/typescript
import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/index.ts'],
format: ['cjs', 'esm'],
dts: true,
clean: true,
external: [
'react',
'react-dom',
'framer-motion',
'@radix-ui/react-toast',
'tailwindcss',
'@radix-ui/*',
'lucide-react',
'wouter'
],
treeshake: true,
sourcemap: true,
minify: true,
splitting: false,
outDir: 'dist',
});