-
Notifications
You must be signed in to change notification settings - Fork 34.8k
Closed
Labels
info-neededIssue requires more information from posterIssue requires more information from posterjavascriptJavaScript support issuesJavaScript support issues
Description
- VSCode Version: Insiders
- OS Version: Mac
Related #11258
Steps to Reproduce:
- Create a new file
person.js
- Add this code.
function Person(name, age) {
this.name = name;
this.age = age;
}
var p = new Person()
I expect to see IntelliSense or even word completion, but I am not.
I see this when logging tsserver output.
Others in the office cannot reproduce this. I can reproduce it on my machine multiple times. I have also observed this starting to work after a time and also IntelliSense will stop working after a time.
It seemed like the problem was with TypeScript Language Service. I tried the following:
- Restarted VS Code - still not resolved
- Killing tsserver.js process - still not resolved, although I did confirm the process restarted.
- I updated TypeScript to RC with
npm install -g typescript@rc
. Did not solve the issue. - I looked in
Console.app
on the mac to see any errors logged.
What other ways can I try and debug this?
Is there a way to see the error logs for Electron?
Do we think this is a TypeScript Language Service issue?
Metadata
Metadata
Assignees
Labels
info-neededIssue requires more information from posterIssue requires more information from posterjavascriptJavaScript support issuesJavaScript support issues