()
| 31 | // lazy load babel since it's not used during dev |
| 32 | let babel: Promise<typeof import('@babel/core')> | undefined |
| 33 | async function loadBabel() { |
| 34 | return (babel ??= import('@babel/core')) |
| 35 | } |
| 36 | |
| 37 | // The requested module 'browserslist' is a CommonJS module |
| 38 | // which may not support all module.exports as named exports |
no outgoing calls
no test coverage detected