WebStormRequireJsPlugin icon indicating copy to clipboard operation
WebStormRequireJsPlugin copied to clipboard

Require.js completion and reference path plugin for WebStorm, PHPStorm and other Idea family IDE with Javascript plugin

Results 27 WebStormRequireJsPlugin issues
Sort by recently updated
recently updated
newest added

When I attempt to use an @scoped/library it completely ignores the input (presumably because of the required `@` symbol)

Once PhpStorm reach 100 exceptions with the same plugins, it stops logging them. Since PhpStorm 2016.1, that requirejs plugin output a NullPointerException every 2 to 4 seconds. Here is one...

I will love to navigate to the source file of a module by CMD + clicking on the string used on helpers like [proxyquire](https://github.com/thlorenz/proxyquire) and [rewire](https://github.com/jhnns/rewire)... Is it possible to...

OSX 10.11.1 JRE 1.8.0-40-release-b92 When I open any require.js project, I get StackOverflow errors, some samples: --- null java.lang.StackOverflowError at com.intellij.openapi.module.ModuleManager.getInstance(ModuleManager.java:42) at com.intellij.openapi.roots.impl.ProjectRootManagerImpl.b(ProjectRootManagerImpl.java:451) at com.intellij.openapi.roots.impl.ProjectRootManagerImpl.getContentRoots(ProjectRootManagerImpl.java:168) at requirejs.RequirejsProjectComponent.findPathInContentRoot(RequirejsProjectComponent.java:199) at requirejs.RequirejsProjectComponent.getWebDir(RequirejsProjectComponent.java:161) at...

If I have: ``` define(['foo'], function(foo) { foo.bar(); }); ``` and I `CTRL + Click` on `bar`, IntelliJ will take me to the definition of `bar` (unless there are multiple...

Another error message came up in WebStorm; this was also, I believe, due to having an incorrect require path. In this case, the path was rooted correctly, but one of...

I recently started using the Require.js plugin in a large JS project to navigate to dependencies using Ctrl+b. This works quite well, but Webstorm notified me of the crash below....

After installation I am able to set the required directory and main file in the webstorm/preferences menu. But when I would like to enable the settings for my project it...

If I define dependency like this: define(['./my-module'], ...); I get "Cannot resolve file" warning. It would be nice if You fix this. Thanks!

I have an issue with path names, which are being updated whenever i move a file. Original: `define(['views/components/filters/base'], ...` After moving: `define(['../../../../components/filters/base'], ...` It would be great to be able...