This repository has no description
0

Configure Feed

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

refactor: update tsup config to support multiple entry points

Co-authored-by: aider (anthropic/claude-sonnet-4-20250514) <aider@aider.chat>

+4 -1
+4 -1
tsup.config.ts
··· 1 1 import { defineConfig } from 'tsup'; 2 2 3 3 export default defineConfig({ 4 - entry: ['src/index.ts'], 4 + entry: { 5 + index: 'src/index.ts', 6 + 'workers/feed-worker': 'src/workers/feed-worker.ts', 7 + }, 5 8 outDir: 'dist', 6 9 target: 'node18', 7 10 format: ['cjs'],