Select the types of activity you want to include in your feed.
1import { defineConfig } from 'tsdown'; 2 3export default defineConfig({ 4 clean: true, 5 dts: true, 6 entry: ['src/index.ts', 'src/plugin.ts'], 7 format: ['cjs', 'esm'], 8 minify: false, 9 shims: false, 10 sourcemap: true, 11 treeshake: true, 12});