voice-ai-workforce
Version:
Voice AI assistant for workforce management - hands-free task updates, time tracking, and team communication. Built by VenueBoost Inc.
18 lines (17 loc) • 525 B
text/typescript
// packages/react/tsup.config.ts
import { defineConfig } from 'tsup'
export default defineConfig({
entry: ['src/index.ts'],
format: ['cjs', 'esm'],
dts: true,
splitting: false,
sourcemap: true,
clean: true,
treeshake: true,
minify: process.env.NODE_ENV === 'production',
target: 'es2020',
external: ['react', 'react-dom', '@voice-ai-workforce/core', '@voice-ai-workforce/types'],
banner: {
js: '/* Voice AI Workforce React - Built with ❤️ by Griseld Gerveni, CTO of VenueBoost Inc. */',
},
})