Aug 29, 2021
Just ban `export default` from your codebase and you won’t regret it: `export * from './other`. Makes the code more readable overall — you no longer have to double check what’s actually being exported as default, because you use semantic constant names.