TSLint error:: Node interpreter path is incorrect. Please check interpreter settings

Viewed 12707

I am new to Angular. Curious to know whats the error. How to resolve it? I am using web storm IDE.

Image

3 Answers

This is how I got rid of this warning in Intellij.

Change this:

enter image description here

to this:

enter image description here

You need to Add C:\Program Files\nodejs\node_modules\npm\bin to your Path environment variable

1) Search 'environment variables'

2) Click on Environment Variables...

3) Click 'Path', then Edit

4) Click 'New' and add your path to bin, in my case: C:\Program Files\nodejs\node_modules\npm\bin

Related