We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
oh - and FWIW, WebStorm allows me to navigate these files...
Sorry, something went wrong.
This issue was moved to microsoft/TypeScript#7632
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: