I have a Typescript solution in Visual Studio 2015 based on this guide.
I want to keep node_modules
outside of the solution/project.
The post "Specify path to node_modules in package.json" explains how to do so in node.js
environment, but I cannot find a way to apply it in Visual Studio.
Note: I don't really care about package.json
, node_modules
and other Node.js
stuff in my Visual Studio solution since I have another repository with third-party libraries (where I'm planning to dump node_modules
there).
So, the question is how to specify a path to node_modules
(located outside of the VS solution)?