-
Notifications
You must be signed in to change notification settings - Fork 1
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
VS Code "Jump to definition" does not work #9
Comments
I think this is a typescript configuration issue. In your {
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"*": [
"types/*",
"*"
]
}
},
Note: If you're not using typescript, make a |
Thanks @alampros, this works great! {
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"*": ["*"]
}
}
} The only details is that I now get suggestions saying
But nothing annoying. |
@antoinerousseau @alampros Do you know how to get rid of those suggestions? I'm using a |
@lsbyerley you can turn off all VS Code TS suggestions in VS code settings if you want, but I don't know how to fix only these ones. |
Try disabling the |
Any way we can make this work again? (clicking an import to go to the definition file)
The text was updated successfully, but these errors were encountered: