A framework-agnostic, universal document renderer with optional chunked loading polyrender.wisp.place/
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 13 lines 289 B view raw
1import { defineConfig } from 'tsup' 2 3export default defineConfig({ 4 entry: ['src/index.ts'], 5 format: ['esm', 'cjs'], 6 dts: true, 7 sourcemap: true, 8 clean: true, 9 external: ['react', 'react-dom', '@polyrender/core'], 10 esbuildOptions(options) { 11 options.jsx = 'automatic' 12 }, 13})