I am using Webpack. How do I import jQuery into Angular2?
I added to package.json
"jquery": "^3.1.0",
Added this to index.html
<script src="node_modules/jquery/dist/jquery.min.js"></script>
Will not find
http://localhost:3000/node_modules/jquery/dist/jquery.min.js
I even tried the below:
<script src="../node_modules/jquery/dist/jquery.min.js"></script>
<script src="../../node_modules/jquery/dist/jquery.min.js"></script>
Yes, jQuery is in node_modules.