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
From microsoft/vscode#76482
TypeScript Version: 3.6.0-dev.20190710
Search Terms:
Code
For the JS:
class A { } module.export = { A };
A
class A {}
Expected behavior:
class B { } module.export = { A: B };
Actual behavior:
class B { } module.export = { B: A };
The order in the exported object literal is swapped so we end up referencing A which no longer exists
The text was updated successfully, but these errors were encountered:
rbuckton
Successfully merging a pull request may close this issue.
From microsoft/vscode#76482
TypeScript Version: 3.6.0-dev.20190710
Search Terms:
Code
For the JS:
A
inclass A {}
Expected behavior:
Actual behavior:
The order in the exported object literal is swapped so we end up referencing
A
which no longer existsThe text was updated successfully, but these errors were encountered: