File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ async function bundle(options: BuildOptions & EntryPointOptions) {
209
209
] ,
210
210
} )
211
211
212
- for ( const chunk of result . outputFiles ) {
212
+ for ( const chunk of result . outputFiles ! ) {
213
213
const esVersion =
214
214
target in esVersionMappings
215
215
? esVersionMappings [ target ]
@@ -252,7 +252,7 @@ async function bundle(options: BuildOptions & EntryPointOptions) {
252
252
toplevel : true ,
253
253
}
254
254
)
255
- code = transformResult . code
255
+ code = transformResult . code !
256
256
mapping = transformResult . map as RawSourceMap
257
257
}
258
258
Original file line number Diff line number Diff line change @@ -220,7 +220,9 @@ type Compose = typeof compose
220
220
221
221
interface ComposeWithDevTools {
222
222
( options : DevToolsEnhancerOptions ) : Compose
223
- < StoreExt > ( ...funcs : StoreEnhancer < StoreExt > [ ] ) : StoreEnhancer < StoreExt >
223
+ < StoreExt extends { } > (
224
+ ...funcs : StoreEnhancer < StoreExt > [ ]
225
+ ) : StoreEnhancer < StoreExt >
224
226
}
225
227
226
228
/**
You can’t perform that action at this time.
0 commit comments