This repository has no description
0

Configure Feed

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

semble / tsup.config.ts
324 B 14 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 'workers/search-worker': 'src/workers/search-worker.ts', 8 }, 9 outDir: 'dist', 10 target: 'node18', 11 format: ['cjs'], 12 clean: true, 13 sourcemap: true, 14});