I believe this library confuses:
export { default } from 'their-module';
With:
export * from 'their-module';
define.alias is export * from 'their-module', making all members available
export { default } from 'their-module, making only the default member available