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..
