VSCode中的自动jQuery类型

时间:2018-08-15 08:56:49

标签: typescript visual-studio-code typescript-typings webdriver-io

我正在使用wdio创建UI测试。 Wdio使用$$$全局变量来搜索元素,例如:

private get logo() { return $("#logo") }
private get menuItems() { return $$("nav .nav-item") }

VSCode自动将全局$识别为JQueryStatic<HTMLElement>$$WebdriverIO.Client<WebdriverIO.RawResult<WebdriverIO.Element>>[]一样正常工作。编译器没有问题,我们在项目中没有安装jQuery类型。

是否可以禁用本机类型,或强制VSCode仅使用package.json中的类型?

1 个答案:

答案 0 :(得分:0)

在设置的字段typescript.disableAutomaticTypeAcquisition中,将其设置为true