chore(blog): 🔧 Update tsup config to optimize blog feature bundling
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
parent
77b1da5652
commit
d416fccfa4
1 changed files with 10 additions and 0 deletions
10
features/blog/shared/tsup.config.ts
Normal file
10
features/blog/shared/tsup.config.ts
Normal 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,
|
||||
});
|
||||
Loading…
Add table
Reference in a new issue