-
Notifications
You must be signed in to change notification settings - Fork 51
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 completion after disabling the builtin typescript extension #506
Comments
I'm not sure but i think the issue is here: [Trace - 7:06:37 PM] Received notification 'textDocument/publishDiagnostics'.
Params: {
"uri": "file:///PATH_TO_EMBER_APP/app/components/navigation/component.ts",
"diagnostics": [
{
"severity": 1,
"message": "Import declaration 'hb' is using private name ''.",
"source": "glint:ts(4000)",
"tags": [],
"range": {
"start": {
"line": 0,
"character": 9
},
"end": {
"line": 0,
"character": 9
}
}
}
]
} After typing |
dup of #130 |
@flashios09 if you upgrade to 1.3, do you get your completions back? |
@NullVoxPopuli Sorry for the delay :( I have upgraded to 1.3, it will detect the imports but not triggering the completion, e.g.: The stacktrace BEFORE choosing the service import:
The stacktrace AFTER choosing the service import:
|
Hi,
For a reason that i ignore, after disabling the builtin typescript extension, VSCode can't recognize the import paths and stop giving me suggestions/auto imports !
BEFORE
Import suggestion:
Service register suggestion:
Class/Interface suggestion:
AFTER
Import suggestion:
Service register suggestion:
Class/Interface suggestion:
I have enabled the tracking with verbose mode, trying to compare the default Typescript language server with Glint language server.
This is the output after typing
import hb
:Typescript language server:
Glint language server:
The text was updated successfully, but these errors were encountered: