Into my project I use the stack Webpack/angular2 (with typescript).
I try to include the .js files of boostrap & jquery but I can't find a simple and well explain way...
I tried succesively to use:
- imports-loader into webpack.config
- import "jquery" into vendor-browser.ts
- require("jquery") into my ts files
I probably miss something...
I'm looking for a generic solution to include a .js file into the "window" object. Files are located into the node_modules folder.
Can someone help me?
Thanks!