简体   繁体   中英

How to disable error highlighting typescript code in vscode

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

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.

Does VS Code have tslint, if so then disable it

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM