(importee: string)
| 505 | // the UMD version when targeting browsers, but we need to use |
| 506 | // the ESM version so that it can be bundled. |
| 507 | handler(importee: string) { |
| 508 | if (/@jridgewell[\\/].*\.umd\.js$/.test(importee)) { |
| 509 | return importee.slice(0, -".umd.js".length) + ".mjs"; |
| 510 | } |
| 511 | }, |
| 512 | }, |
| 513 | }, |
| 514 | rollupNodeResolve({ |
no test coverage detected