VS Code not rendering TypeScript errors when hovering over the underlined code

23 hours ago 1
ARTICLE AD BOX
let message: string = "Hello TypeScript!"; message = 98

The file containing the above code is index.ts. VS Code does correctly underline message with the red squiggly line to indicate an error.

But when I hover over the underlined code, there is no popup rendering the error message. However, VS Code does show autocompletion of code, e.g. when I type message..

Read Entire Article