tsup.config.ts 252 B

123456789101112131415
  1. import { defineConfig } from 'tsup'
  2. export default defineConfig({
  3. target: 'es6',
  4. platform: 'browser',
  5. format: ['cjs'],
  6. entry: ['src/index.ts'],
  7. clean: true,
  8. loader: {
  9. '.png': 'base64',
  10. },
  11. env: {
  12. NODE_ENV: 'production',
  13. },
  14. })