Can VS Code display errors that the TypeScript compiler does not catch when they are both using the same version of TypeScript?
I noticed that my VS Code setup is utilizing TypeScript version 2.6.2 and that intellisense highlights an error stating
'Parameter ... implicitly has an 'any' type'
in one of my code files. However, running the tsc compiler does not report any errors.
This behavior appeared suddenly; one moment the code editor was clear, and the next, it had red lines under some lines of code.