Skip to content

Commit 5ff44d8

Browse files
Harrison IfeanyichukwuHarrison Ifeanyichukwu
Harrison Ifeanyichukwu
authored and
Harrison Ifeanyichukwu
committed
fix: update doc
1 parent 036f67e commit 5ff44d8

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,22 +122,34 @@ module.exports = createConfig({
122122
envs: ['production', 'development'],
123123
},
124124

125+
/**
126+
* cjs build config
127+
*/
125128
cjs: {
126129
enabled: true,
127130
out: './build/cjs',
128131
},
129132

133+
/**
134+
* es build config
135+
*/
130136
es: {
131137
enabled: true,
132138
out: './build/es',
133139
},
134140

141+
/**
142+
* iife build config, disabled by default
143+
*/
135144
iife: {
136145
enabled: false,
137146
out: './build/iife',
138147
src: 'src/ex',
139148
},
140149

150+
/**
151+
* umd build config, disabled by default
152+
*/
141153
umd: {
142154
enabled: false,
143155
out: './build/umd',

0 commit comments

Comments
 (0)