-
Notifications
You must be signed in to change notification settings - Fork 39
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
VSCode does not show suggestions for es6 import style? #65
Comments
Obviously @zeke but I did that and it doesn't work for me. Even with all extensions disabled, no suggestions have been showed for es6 import style. I have been able to confirm with at least 1 other person on slack that suggestions weren't thrown, at the very least on 1.13.1 of VSCode. it lists suggestion only after I typed {app} etc somewhere else in the code but with the fresh project, it never gave me any options. |
I believe the root cause of this issue is this TS bug, rather than an error in the electron |
Thanks @mjbvz. Closing this out. |
When I write
import {} from 'electron'
it doesn't give me import suggestions, however if I write is as a standard node module importconst {} = require('electron')
I get suggestions to import; app, BrowserWindow etc, any guesses where is it going south?Steps to Reproduce:
yarn init
yarn install electron
import {} from 'electron
The text was updated successfully, but these errors were encountered: