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 Code都是最新的。
是否有任何建议解决此问题?