Hi i have something like this:
I would like to import everything in directory (expect index.ts) to index.ts and then export it I don't want to import everything like this:
import * as Network from './network';
import * as FirewallRule from './firewall-rule';
export { Network, FirewallRule };
Because it could be a lot of imports and export. Is it possible to do this automatically with fs npm module ?