My goal is to create a standalone AngularJS module that utilizes web workers for handling heavier processing tasks. This module will be integrated into an Angular web application that I am currently developing, as well as potentially other projects.
I envision this module being easily installable via bower, with all necessary web worker scripts included. The challenge lies in the fact that these web worker scripts must be external files (due to restrictions like lack of support for Blob/URL technique in IE). I don't want users of the client application to have to manage or expose the worker scripts in a public directory - I want seamless integration when they include my module.
To summarize: I am seeking to package my web worker scripts within an AngularJS module, ensuring compatibility with IE 10+ without relying on the Blob/URL technique.