I\'m using WebStorm 7 for Firefox Add-on SDK development.
WebStorm shows a warning: \"Unresolved function or method\" for require()
.
I want to g
On WebStorm 2016.3
Press ALT+F12 (open terminal)
Run this command:
npm install require.js
Disable JetBrains Inspections and get the ESLint plugin.
The only thing that File | Invalidate caches and restart
does for me is reset it long enough to trick me into thinking the error is gone. Once the inspections run again the error comes back like a gift that keeps on giving.
I saved myself all that frustration by disabling all JetBrains inspections (Editor
> Inspections
> uncheck JavaScript
) Then I installed the ESLint plugin.
The inspection that causes "Unresolved function method" can be turned off by going to JetBrains inspections (Editor
> Inspections
> JavaScript
) and searching for "Unresolved Javascript" and turning off "Unresolved Javascript function" and "Unresolved Javascript variable"
I killed them all and have edited my code hassle free ever since.
After spending an hour trying to get this to work using all solutions found online, this finally did the trick!
File -> Invalidate Caches/Restart...
File->Settings->Languages & Frameworks->JavaScript
Do you mean that require()
is not resolved? You need to either add require.js
to your project or enable Node.js Globals
predefined library in Settings/Languages and Frameworks/JavaScript/Libraries.
(Edited settings path by @yurik)
In WebStorm 2016.x-2017.x: make sure that the Node.js Core library is enabled in Settings (Preferences) | Languages & Frameworks | Node.js and NPM
In IntelliJ 2018.3.2, go to Settings (Preferences) | Languages & Frameworks | Node.js and NPM
and enable Coding assistance for Node.js
In WebStorm 2018.3 a bit different interface