I consider myself a proficient user of Vue and I require the ability to ALT+click (multiCursorModifier) on different Vue components in my project to navigate to their definition/implementation. I have already installed Vetur and configured the following settings in my settings.json file for Vetur.
"vetur.experimental.templateInterpolationService": true,
"vetur.trace.server": "verbose"
Below is the configuration in my jsconfig.json file.
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
}
}
}
When attempting to click on my Vue 2 component, I encountered the following error message.
Unable to open 'vue-editor-bridge.ts': Unable to read file '\vue-temp\vue-editor-bridge.ts' (Error: Unable to resolve non-existing file '\vue-temp\vue-editor-bridge.ts').
I simply want the click to definition feature to function properly. I also tried using the Vue Peek extension without success. How should I proceed from here?