So I have seen multiple examples of how to include jQuery in the global namespace using webpack. I have seen code using the ProviderPlugin, imports-loader, and even a couple of other methods.
However, my JS code is going to be running on client web pages so I do not want my version of jQuery to override theirs. Is there way to have webpack include jQuery as a local variable to my JS via noConflict?