-
Notifications
You must be signed in to change notification settings - Fork 30k
New issue
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
intellisense does not work when using module.exports.fnName
#4943
Comments
This issue was moved to microsoft/TypeScript#7824 |
Thanks @egamma |
Does that mean that is not a problem in VSCode but on typescript itself? |
I believe it's the TypeScript language server that deals with this so I think it is. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Steps to Reproduce:
cfx.js
with the following contentindex.js
cfx.
inindex.js
, it will not suggestgenerateCanvas
. If you changecfx.js
toexports.generateCanvas
instead ofmodule.exports.generateCanvas
, it works.This seems to be a bug because both notations are equivalent.
The text was updated successfully, but these errors were encountered: