在vscode禁用内置验证。打开设置(Ctrl+\`),搜索javascript.validate.enable或者typescript.validate.enable,设置为false;或者在.vscode/settings.json中,添加配置。例如{ "typescript.tscPath": "tsc", "typescript.tsdk": "node_modules/typescript/lib", "javascript.validate.enable": false }
在vscode禁用内置验证。打开设置(Ctrl+\`),搜索
javascript.validate.enable
或者typescript.validate.enable
,设置为false
;或者在
.vscode/settings.json
中,添加配置。例如