Currently using Visual Studio 2015 Update 3 and encountering an issue with Resharper when trying to Refactor TypeScript code. Resharper is attempting to refactor code in all folders, including the node_modules
directory. This poses a problem as I do not want Resharper making changes to the third-party libraries within node_modules
, which would be a time-consuming task considering the numerous folders it contains. How can Resharper be configured to exclude node_modules
from the Refactor process?
Attempts made so far to resolve this issue include:
- Navigating to Resharper... Options... Search & Navigation... Elements to skip... Adding node_modules
- Accessing Resharper... Options... Code Inspection... Settings... Adding node_modules to the list of elements to skip
Even changing the node_modules folder properties to Hidden in Windows did not prevent Resharper from accessing it during the Refactor process.
Any additional suggestions on how to make Resharper ignore node_modules
?