Home > front end >  How to disable error highlighting typescript code in vscode
How to disable error highlighting typescript code in vscode

Time:02-24

Good afternoon! I ran into such a problem that vscode began to highlight the correct code in red. When using the union operator '??' or when using optional chaining '?.' The code builds normally, there are no errors in the console, only vscode highlights the code, when hovering, an error pops up: '[ts] Expected expression'

This problem arose after I switched to a new computer, on the old computer this problem did not occur with the same code. The same extensions are installed on the new computer, the only difference with the old computer is the version of vscode itself and the version of the installed extensions.

For now, I've temporarily disabled typescript code checking in the vscode settings with "typescript.validate.enable": false,

but this approach seems wrong to me, because I want the code to be checked, but at the same time not highlighted in red using the union operator '??' or when using optional chaining '?.'

CodePudding user response:

Does VS Code have tslint, if so then disable it

CodePudding user response:

Make sure you're using the correct TypeScript version in VSCode. Press Ctrl Shift P, then type and select "TypeScript: Select TypeScript version..." and select the latest version.

  • Related