-
Notifications
You must be signed in to change notification settings - Fork 41
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
Typescript doesn't seem to work. #79
Comments
I have the same issue. I can run the code just fine and it works, but in the editor node_modules imports do not work. The issue does not appear to be the same as these, since npm imports are broken and I am not attempting to do anything cross-cell. |
@paustint I had this issue with VSCode on both this repo's extension and tslab. I downgraded my VSCode to 1.78 and this seems to have resolved the issue EDIT: Added a PR for VS Code to fix this microsoft/vscode#186812 |
I am having this issue |
It seems to be vscode's own bug. The vscode use a virtual path to represent cells in a notebook file (you can see the virtual path in the log by enable Which, unfortunately broke relative path. Because the typescript language server would assume your file under other (relative path) places And thus no relative path would work. I wonder if change the vscode to append inMemoryResourcePrefix, scheme and authority in the file name instead will fix the path. But I have no experience to edit vscode itself. So I don't know how to test it yet. |
The text was updated successfully, but these errors were encountered: