Export syntax style ?
I just switched 100% to VSCode, and built-in TS linter keeps on highlighting the following as an error :
export Component from 'components/Component';
MDN doc recommends :
export { default as Component } from 'components/Component';
and it indeed passes the TS linter.
Do you have an opinion @GuillaumeAmat ?