You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
toTsFilePath and toResource both have the same comment:
// Yarn v2+ hooks tsserver and sends `zipfile:` URIs for Vim. Keep as-is.
// Example: zipfile:///foo/bar/baz.zip::path/to/module
however, toTsFilePath correctly returns the URL without doing anything, and toResource calls URI.parse on it, causing it to break and not be able to load the resource.
I think that a proper fix would require quite some work given how now things are expected to be URI. If you have some simple fix then it would probably not work in all cases.
I've looked into it a bit but so far haven't come up with satisfying solution.
toTsFilePath
andtoResource
both have the same comment:however, toTsFilePath correctly returns the URL without doing anything, and toResource calls
URI.parse
on it, causing it to break and not be able to load the resource.typescript-language-server/src/ts-client.ts
Line 249 in 223a497
The text was updated successfully, but these errors were encountered: