I believe what you are looking for is
export * from './inner/mod';
That will reexports all exports of ./inner/mod. The spec actually has very nice tables listing all the possible import and export variants.
I believe what you are looking for is
export * from './inner/mod';
That will reexports all exports of ./inner/mod. The spec actually has very nice tables listing all the possible import and export variants.