Option --noLink to NO link (and later option to use something like install-local)
Description
Add an option to --noLink and rely on some other user provided method to install the sibling packages.
Motivation
When using WSL and opening the project that resides on WSL linux, but from an Editor/IDE from Windows, all the deps links are broken and IDE throws errors.
The same occurs when running Docker images and ./node_modules is just shared between host & docker container.
I am solving this problem by using install-local and later at build:watch time I copy the changed files of each lib inside the node_modules where it's needed.
Suggested Implementation
Simple improvement would be to just add a --noLink flag on your CLI and just don't link, but ignore project's deps (preventing npm from throwing errors for missing deps).
As per my workflow above, the user has to find a way of installing the local deps.
Alternate Implementations
An exotic improvement would be to do: a) what install-local does and b) what my copy scripts do, for build:watch time!