I\'m using Webpack to build an Angular 1.4 project. The project makes use of several jQuery plugins, which are wrapped into angular directives. Those directives internally use <
In your case is better to use ProvidePlugin. Just add this lines to your webpack config in plugins section and jquery will available in your app:
new webpack.ProvidePlugin({ "$": "jquery", "jQuery": "jquery" })