Reputation: 28059
Very frustrating, I am in a situation where TypeScript is compiling fine, but I am still getting Intellisense errors.
This is TypeScript 1.7 in Visual Studio 2015, Update 1.
When I make a change and hit save however, it compiles fine, and the underlying Javascript gets updated.
Any ideas?
Cheers
Upvotes: 11
Views: 2876
Reputation: 7536
You could check out your .csproj file if you have a c#-based project. Sometimes there's an incorrect version of typescript. Look for a string with:
<TypeScriptToolsVersion>version</TypeScriptToolsVersion>
There should be 1.7.
Upvotes: 1