-
Notifications
You must be signed in to change notification settings - Fork 149
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
Inlay Hints Broken #1210
Comments
Possibly related: #943 |
This code triggers the same “False expression” error. const id = <T>(x: T) => x;
id(
id(
"",
),
); |
I'm seeing a related issue but with a different stack VSCode's typescript version is 5.7.2 and I wonder if that version mismatch has something to do with it.
|
That's a good point! I've run into some other bugs with the ts mismatches, although the only suspicious change from the release notes is that they've enabled the V8 compile cache. |
I think it has to do something with the competing TypeScript servers, though not necessarily the version per se. There have been problems in the past with the project-wide TypeScript server, and now that VSCode is leaning more heavily on Copilot (including using copilot for autocomplete!), reliably turning off the integrated TypeScript server is becoming harder. |
Describe the bug
Periodically, I'll get a bunch (one per keystroke) of messages saying that "Request textDocument/inlayHint failed."
I've also noticed my computer gets really slow, and I often get this in the terminal:
zsh: fork failed: resource temporarily unavailable
(which I think is about memory, for which theCode Helper (...)
processes spike, aCode Helper (Plugin)
hits 1gb of memory used, but I can't tell which one.). Not that that's _ necessarily_ related, but they all seem to trigger about the same time, and it's Deno for which it's noticeable.To Reproduce
No idea, beyond that it triggers randomly on this project: https://github.com/lishaduck/effect-utils.
I have yet to figure out what starts or stops it.
Expected behavior
It wouldn't do this.
Screenshots
Full logs: https://gist.github.com/lishaduck/3e8625fd0b227ed7723c012038223e04
Main errors:
(new one, didn't see this when I inspected it yesterday)
Versions
deno 2.0.6 (release, aarch64-apple-darwin) | vscode_deno 3.42.0 | vscode 1.95.3
The text was updated successfully, but these errors were encountered: