vs代码在打字稿代码中引发虚假错误

时间:2019-04-30 12:22:01

标签: typescript visual-studio-code

VS Code错误地在我的TypeScript代码中引发错误。这些警告似乎没有联系。

示例

没有length属性

const str : string = "foo";
const num : number = str.length;     // <- length underlined in red

VS Code抱怨Property 'length' does not exist on type 'string'.

Readonly<...>

type Foo = Readonly<{bar: 42}>     //  <- Readonly underlined in red

VS Code错误消息:Cannot find name 'Readonly'


版本

版本:

  • VS代码:1.33
  • 节点:10
  • 打字稿:3.4.5

我所有的软件包和VS Code都是最新的。

是否有任何建议解决此问题?

0 个答案:

没有答案