Closed red-meadow closed 2 years ago
export { default as XXX } from 'yyy' syntax is not working when used in a Meteor package. It works for the code outside the packages though.
export { default as XXX } from 'yyy'
How to repoduce:
// `test:modules` - `index.js` export { default as MyDefault } from './someFileWithDefaultExport' // main.ts import { MyDefault } from 'meteor/test:modules'
export { default as XXX } from 'yyy'
syntax is not working when used in a Meteor package. It works for the code outside the packages though.How to repoduce: