This repository has no description
0

Configure Feed

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

semble / tsup.config.ts
263 B 13 lines
1import { defineConfig } from 'tsup'; 2 3export default defineConfig({ 4 entry: { 5 index: 'src/index.ts', 6 'workers/feed-worker': 'src/workers/feed-worker.ts', 7 }, 8 outDir: 'dist', 9 target: 'node18', 10 format: ['cjs'], 11 clean: true, 12 sourcemap: true, 13});