You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I really miss Intellisense in require-JS Modules (defines and requires). So I happily found this extension but it doesn't work in VS 2012 RC. Is there any fix planned?
Also I am working with the 2.0.x Version of Require.. Does this make any difference? I noticed the sample code seems to use the 1.0.x version...
The text was updated successfully, but these errors were encountered:
I have a VM set up to try to get this to work now, but I'm still new to debugging *.intellisense.js files, so if anyone has pointers on how to get that going, that is appreciated. While I may be able to search for more info, I'm trying to ship a few different project releases, so do not mind someone giving me some direct pointers to save me some time.
Actually, I take that back, define() is sort of working correctly in the following code:
define("foo",["jquery"],function($){$.// this worksreturn{myProp: "prop"};});require(["jquery","foo"],function($,foo){});
However, if you comment out the require() code, the Intellisense in the define() no longer works. It appears you need to have already loaded the module with a require() before it will work in a define(), but I could be wrong.
I really miss Intellisense in require-JS Modules (defines and requires). So I happily found this extension but it doesn't work in VS 2012 RC. Is there any fix planned?
Also I am working with the 2.0.x Version of Require.. Does this make any difference? I noticed the sample code seems to use the 1.0.x version...
The text was updated successfully, but these errors were encountered: