找不到名称“标头”、“RequestInit”、“响应”

问题描述 投票:0回答:1

我将本机脚本从 2.5.2 更新到了 3.0.3。突然,当我尝试运行该应用程序时,出现以下错误:

node_modules/tns-core-modules/tns-core-modules.d.ts(17,27):错误 TS2304:找不到名称“标题”。

node_modules/tns-core-modules/tns-core-modules.d.ts(19,44):错误 TS2304:找不到名称“RequestInit”。

node_modules/tns-core-modules/tns-core-modules.d.ts(19,66):错误 TS2304:找不到名称“响应”。

我不明白为什么,因为我认为我没有在我的项目中使用这个模块。

谢谢! :)

module header response nativescript angular2-nativescript
1个回答
18
投票

添加到 tsconfig

  "compilerOptions": {
    "lib": [
      "es2017",
      "dom"
    ]
  }
© www.soinside.com 2019 - 2024. All rights reserved.