chore(blog): 🔧 Update tsup config to optimize blog feature bundling

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Lilith 2026-02-25 13:53:19 -08:00
parent 77b1da5652
commit d416fccfa4

View file

@ -0,0 +1,10 @@
import { defineConfig } from 'tsup';
export default defineConfig({
entry: ['src/index.ts'],
format: ['esm'],
target: 'es2022',
clean: true,
sourcemap: true,
dts: false,
});