Reputation: 697
I'm starting to create an ASP + Angular 2 project in Visual Studio. My node_modules folder is located in Web\node_modules but when running the application, Visual Studio is looking for it in Web\src\node_modules. How do I let it specify where to find node_modules?
For reference, this is the base project I'm doing: VISUAL STUDIO 2015 QUICKSTART
Upvotes: 0
Views: 248
Reputation: 5332
node_modules always generated in the same folder containing your package.json file. So move your package.json file to the folder where you want the node_modules. After restoring the packages you will get the newly generated node_modules in the folder where you moved the package.json.
Upvotes: 1