My vsCode is alerting me about an issue:
❗ The Vue Language Features (Volar) plugin is using version 1.0.9, while the workspace has vue-tsc version 0.39.5. This discrepancy may result in different type checking behavior.
vue-tsc: /home/tomas/Desktop/testingthekid/viteFiles/typescript/typescript-and-vue-workshop/app/node_modules/vue-tsc/package.json
I searched online and found a similar solution where updating to the latest version of vue-tsc resolved the issue by aligning both versions. I followed suit and indeed, the .json file now shows
"vue-tsc": "^1.0.9"
. However, the problem persists even after restarting the server with ctrl+c and npm run dev. Could it be that this is not the correct way to restart the server? Why isn't vscode recognizing the version change?Here's a screenshot: https://i.sstatic.net/VZx9p.png
You can clearly see the error and the vue-tsc version. I also noticed another possible culprit: https://i.sstatic.net/eoqkd.png
If you have any suggestions on how to resolve this issue, your input would be greatly appreciated. Thank you in advance for any help!