Closed
Description
In the system.config.ts there is:
const cliSystemConfigPackages: any = {};
barrels.forEach((barrelName: string) => {
cliSystemConfigPackages[barrelName] = { main: 'index' };
});
I could nowhere find information about:
1.) What exactly is a barrel
2.) Why gets each barrel a object { main: 'index' } assigned
Would you please explain the infrastructure you setup in your documentation.