react.di
react.di copied to clipboard
Implement export feature for module component
It should be possible to export defined providers of a module component. So that there is no need for redundant configurations in other modules.
<Module providers={ [ { provide: Service, useClass: Service, export: true } ] } />
For exporting all providers
<Module exportAll={true} />