({ cwd = process.cwd() } = {})
| 27 | }) |
| 28 | |
| 29 | const getBuiltJsFiles = ({ cwd = process.cwd() } = {}) => |
| 30 | glob(builtFilesGlob, { |
| 31 | cwd, |
| 32 | ignore: builtFilesIgnoreGlobs, |
| 33 | strict: false, |
| 34 | nodir: true, |
| 35 | }) |
| 36 | |
| 37 | function getEsnextBabelOptions(presetEnvOptions) { |
| 38 | return { |