diff --git a/features/blog/shared/tsup.config.ts b/features/blog/shared/tsup.config.ts new file mode 100644 index 000000000..c49464428 --- /dev/null +++ b/features/blog/shared/tsup.config.ts @@ -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, +});