({ useESModules })
| 3 | import pkg from './package.json' |
| 4 | |
| 5 | const getBabelOptions = ({ useESModules }) => ({ |
| 6 | exclude: 'node_modules/**', |
| 7 | runtimeHelpers: true, |
| 8 | plugins: [['@babel/plugin-transform-runtime', { useESModules }]], |
| 9 | }) |
| 10 | |
| 11 | const isExternal = id => !id.startsWith('.') && !id.startsWith('/') |
| 12 |
no outgoing calls
no test coverage detected
searching dependent graphs…