(/** @type {PackageFormat} */ format)
| 353 | } |
| 354 | |
| 355 | function createProductionConfig(/** @type {PackageFormat} */ format) { |
| 356 | return createConfig(format, { |
| 357 | file: resolve(`dist/${name}.${format}.prod.js`), |
| 358 | format: outputConfigs[format].format, |
| 359 | }) |
| 360 | } |
| 361 | |
| 362 | function createMinifiedConfig(/** @type {PackageFormat} */ format) { |
| 363 | return createConfig( |
no test coverage detected