I have two javascript modules that looks like this:
// inner/mod.js export function myFunc() { // ... } // mod.js import * as inner from \"./inner/mod\";
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.
./inner/mod