I've got an existing ASP.NET web site, I'm using Typescript and everything is ticking along nicely.
If I decide I want to use jQuery I can simply run npm install @types/jQuery, and suddenly jQuery in all is glory is available to me in my .ts file. If I want to use lodash then npm install @types/lodash and without further ado there is my fully typed lodash.
If however I run npm install @types/vue then.... nothing. Any reference to Vue in my .ts file gets me TS2304 (TS) Cannot find name 'Vue'.
What's going on? I thought Vue was supposed to be one of the most Typescript friendly projects?
npm install vue) it should work (maybe check your module resolution )npm install @types/jquerythen that all works, but not withnpm install vue.