I'm using Angular 14 and building a shared library. I have this project structure
+ projects
+ my-lib
- package.json
+ src
- public-api.ts
+ lib
+ helpers
- index.ts
- my-first-helper.ts
- my-second-helper.ts
...
In "public_api.ts" I have
export * from './lib/helpers';
and in helpers/index.ts I have
export * from './my-first-helper';
export * from './my-second-helper';
My question is, every time I add a new file to the "helpers" directory, I have to edit my "index.ts" to explicitly include it. Is there a way I can author my "index.ts" file to just export everything in each file in my "helpers" directory?