oxc/crates/oxc_linter/fixtures/import/re-export-default.js

7 lines
242 B
JavaScript

export const baz = "baz? really?"
export { default as bar } from './default-export'
export { default as foo } from './named-default-export'
// should allow conversion from CJS to ES6 as follows:
export { default as common } from './common'