Ian Vink
Ian Vink

Reputation: 68740

Visual Studio 2019: Not showing Typescript Intellisence

In VS 2019, when I hover I get no help:

enter image description here

However, in Visual Studio Code I get rich help:

enter image description here

Is there a way to enable more help in Visual Studio 2019 ?

Upvotes: 4

Views: 3373

Answers (2)

LoLance
LoLance

Reputation: 28086

Visual Studio 2019: Not showing Typescript Intellisence

1.For now, the default Typescript SDK is 3.6, so if you have early SDK versions like 2.x, I suggest you install corresponding TypeScript SDK extensions here. And according to this document:

If your TypeScript version is less than 3.1, please Disable dedicated syntax process under Tools > Options > Text Editor > JavaScript/TypeScript > Language Service and restart Visual Studio (from the same command prompt).

You can follow it if the TS version you use is less than 3.1.

2.Or you can try updating to TS 3.6 which is default in VS2019.

Note: Please make sure you're opening the Solution/Project instead of single typescript file.

Upvotes: 2

MKperson
MKperson

Reputation: 1

I would check the Extensions->Manage Extensions and look in the Visual Studio marketplace. the only alternitve I can think of at the moment is if your project started outside of Visual Studio 2019 you have a missing reference somewhere not allowing for intellisence. Without more information, all I can give are suggestions to try.

Upvotes: 0

Related Questions