We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
From @chadbr on March 22, 2016 0:18
I have large legacy codebase with "manual" style namespacing like this:
//namespaces var my = my || {}; my.app = my.app || {};
and "classes" declared like this:
my.app.Application` = (function () { var Application = function () { ... }; return Application; })();
I've tried several combinations of jsconfig.json parameters and none allow me to navigate this style of code. Should this work?
Steps to Reproduce:
vscodeTestJS.zip
Copied from original issue: microsoft/vscode#4533
From @chadbr on March 22, 2016 0:18
I have large legacy codebase with "manual" style namespacing like this:
and "classes" declared like this:
my.app.Application` = (function () {
var Application = function () {
...
};
return Application;
})();
I've tried several combinations of jsconfig.json parameters and none allow me to navigate this style of code. Should this work?
Steps to Reproduce:
vscodeTestJS.zip
Copied from original issue: microsoft/vscode#4533