Skip to content

Commit

Permalink
fix: update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
teclone committed Jun 27, 2024
1 parent 036f67e commit 5ff44d8
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,22 +122,34 @@ module.exports = createConfig({
envs: ['production', 'development'],
},

/**
* cjs build config
*/
cjs: {
enabled: true,
out: './build/cjs',
},

/**
* es build config
*/
es: {
enabled: true,
out: './build/es',
},

/**
* iife build config, disabled by default
*/
iife: {
enabled: false,
out: './build/iife',
src: 'src/ex',
},

/**
* umd build config, disabled by default
*/
umd: {
enabled: false,
out: './build/umd',
Expand Down

0 comments on commit 5ff44d8

Please sign in to comment.