Open
Description
🚀 feature request
Relevant Package
This feature request is for @angular/cli
Description
ng generate can currently handle web-workers and service-workers, but not shared-workers. It would be very helpful if shared workers could be handled similarly.
Right now there's very little documentation about how to setup shared workers with angular, unlike web workers where I can simply call ng generate web-worker
and start filling in my code.
Describe the solution you'd like
There should be an ng generate shared-worker
command that works similar to the commands for web and service workers.
Describe alternatives you've considered
This medium article and these two Stack Overflow questions both have different solutions to make this work.