( config: OutputOptions, unsetOptions: Set<string> )
| 316 | }; |
| 317 | |
| 318 | const getEntryFileNames = ( |
| 319 | config: OutputOptions, |
| 320 | unsetOptions: Set<string> |
| 321 | ): NormalizedOutputOptions['entryFileNames'] => { |
| 322 | const configEntryFileNames = config.entryFileNames; |
| 323 | if (configEntryFileNames == null) { |
| 324 | unsetOptions.add('entryFileNames'); |
| 325 | } |
| 326 | return configEntryFileNames ?? '[name].js'; |
| 327 | }; |
| 328 | |
| 329 | function getExports( |
| 330 | config: OutputOptions, |
no test coverage detected
searching dependent graphs…