I have recently delved into the world of Typescript and have been using it for a few days now. Everything seems to be working smoothly - Emmet, linting, etc. However, I've encountered an issue when trying to open my older JavaScript projects in VS Code. The editor is flagging warnings and errors related to typing and other TypeScript-specific features, even though I am working with JavaScript.
PS. I am currently working on a Vue (Nuxt) project where the Vetur Plugin handles syntax highlighting, linting, and more.
Here are some examples of the errors:
'modifyHtml' is declared but its value is never read.ts(6133)
Property '$store' does not exist on type 'CombinedVueInstance<Record<never, any> & Vue, object, object, object, Record<never, any>>'.Vetur(2339)
In addition, here is a snippet from my settings.js file:
{
"workbench.iconTheme": "material-icon-theme",
...
"json.schemas": []
}