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
Hello,
when I get a module (mod1) which is 2 level above via requirejs, the autocompletion doesn't work in my mod2. But if I get mod2 in a third module, the autocompletion fit perfect.
This is a workspace for
my example :
folder1
-> folder2
-> -> mod1.js
-> mod2.js
mod.js
mod.js
define(function(){return{name: 'mod'};})
mod1.js
define(['../../mod',function(mod){// here autocompletion doesn't work for "mod." - don't see mod.namereturn{name: 'mod1',mod: mod};})
mod2.js
define(['folder2/mod1',function(mod1){// here autocompletion work for "mod." - see mod1.mod.namereturn{name: 'mod1',mod: mod};})
Have you a solution ?
The text was updated successfully, but these errors were encountered:
Hello,
when I get a module (mod1) which is 2 level above via requirejs, the autocompletion doesn't work in my mod2. But if I get mod2 in a third module, the autocompletion fit perfect.
This is a workspace for
my example :
folder1
-> folder2
-> -> mod1.js
-> mod2.js
mod.js
Have you a solution ?
The text was updated successfully, but these errors were encountered: