tl;dr; Can I adjust through which registry (a private one instead of the public) Visual Studio 2017 intellisense searches when adding packages to package.json
We are currently exploring the npm package management as provided in TFS2017 Update 1. We have setup a private registry and adjusted our .npmrc files to point to this private registry in stead of the public registry. (We adjusted the built-in config file and per-user config file.)
Since I already had nodejs and npm before installation of VS2017, I actually have two nodejs/npm on my system, so I adjusted the .npmrc of both the VS2017-npm [as used by the task explorer] and the default npm [as used by any normal command prompt].
We were able to publish a package to the private npm registry using the task explorer. (I also have the NPM Task Runner extension installed) But the package intellisense while typing in the package.json in Visual Studio 2017 does not find it. (Our package starts with "lv-", when we start typing in "lv-" we only see packages published on the public registry, not the one we published to our private registry).
So, the VS2017 package intellisense seems to skip our private npm registry and only searches the public npm .
Does anyone know where we can "repoint" the Visual Studio 2017 / NPM Task Runner extension intellisense for npm to search our registry ?
Should be by using the .npmrc files no ?