繁体   English   中英

构建:找不到“节点”的类型定义文件

[英]Build:Cannot find type definition file for 'node'

VS 2015 社区版(在家)、npm 3.10、Angular 2 我试图在 ASP.Net MVC 5 应用程序中拉取 Angular2 设置。 我开始使用的模板使用了旧版本的 Angular,所以我更新了包引用。

当我构建时,列表中的第一个错误是:
构建:找不到“节点”的类型定义文件
之后还有许多其他错误,但我假设大多数是由于第一个问题造成的。

这是 package.json 和typings.json

包.json

{
  "version": "1.0.0",
  "name": "aspnet",
  "private": true,
  "scripts": {
    "postinstall": "typings install",
    "typings": "typings"
  },
  "dependencies": {
    "@angular/common": "~4.0.0",
    "@angular/compiler": "~4.0.0",
    "@angular/core": "~4.0.0",
    "@angular/forms": "~4.0.0",
    "@angular/http": "~4.0.0",
    "@angular/platform-browser": "~4.0.0",
    "@angular/platform-browser-dynamic": "~4.0.0",
    "@angular/router": "~4.0.0",
    "angular-in-memory-web-api": "~0.3.0",
    "systemjs": "0.19.40",
    "core-js": "^2.4.1",
    "rxjs": "5.0.1",
    "zone.js": "^0.8.4",
    "bootstrap": "^3.3.7"
  },
  "devDependencies": {
    "@types/core-js": "^0.9.41",
    "gulp": "^3.9.1",
    "gulp-clean": "^0.3.2",
    "gulp-concat": "^2.6.1",
    "gulp-tsc": "^1.3.1",
    "gulp-typescript": "^3.1.6",
    "path": "^0.12.7",
    "typescript": "~2.1.0",
    "typings": "~2.1.1"
  }
}

打字.json

{
  "globalDependencies": {
    "core-js": "registry:dt/core-js#0.0.0+20160725163759",
    "jasmine": "registry:dt/jasmine#2.2.0+20160621224255",
    "node": "registry:dt/node#6.0.0+20160909174046"
  }
}

如果我尝试只更新类型,我会收到这些消息

*typings WARN deprecated 11/21/2016: "registry:dt/node#6.0.0+20160909174046" is deprecated (updated, replaced or removed)
typings WARN deprecated 9/14/2016: "registry:dt/core-js#0.0.0+20160725163759" is deprecated (updated, replaced or removed)
typings WARN deprecated 10/25/2016: "registry:dt/jasmine#2.2.0+20160621224255" is deprecated (updated, replaced or removed)*

[更新]
清理我的 node_modules 文件夹,然后再次运行 npm install 清除一切。 当我将项目文件夹移动到系统上的另一个位置时,这似乎最常发生。

就我而言,我解决了我的问题。 希望以后能对其他人有所帮助。

npm install @types/node --save-dev

我在通过Visual Studio更新软件包时遇到了一些问题。 从现在开始,我始终使用Powershell控制台更新或添加软件包。

启动PowerShell并导航到package.json所在的文件夹,然后运行npm install完成安装后重新启动visual studio。

您也可以尝试删除您的node_modules文件夹,然后运行npm install

希望这能解决您的问题。

重新启动或重新加载我的 VSCode 工作

在 vscode 中解决这个问题的最简单方法是。

创建一个 .vscode 目录,然后在其中创建 settings.json 并放入下面的 json 就可以了。

{
"search.exclude": {
  "**/node_modules": true
},
"files.watcherExclude": {
  "**/.git/objects/**": true,
  "**/.git/subtree-cache/**": true,
  "**/node_modules/**": true,
  "env-*": true
},
"files.exclude": {
  "**/.git": true,
  "**/.DS_Store": true,
  "**/node_modules": true,
  "env*": true
}
}

对于本地Visual Studio

如果您从一个干净的模板开始,则VS功能中的内置功能应该可以工作!

转到Dependencies > npm >右键单击> Restore Packages

然后尝试再次构建。

对于Visual Studio Team Services

  • 安装节点https://nodejs.org/en/download/
  • 如果不使用托管代理,请重新启动代理服务(VSTS代理)
  • 添加构建任务以运行npm install
  • 单击“工作文件夹”旁边的菜单图标,选择project.json文件所在的位置。

    在这里输入代码

有时只是因为缺少某些软件包。 您可以尝试运行yarn installnpm install应该可以解决。

问题也可能与其他问题有关

尝试此处发布的解决方案的步骤之一无法找到我的“节点”类型定义文件

我在使用 RN 时遇到了这个问题,并且我对我的包的依赖不正确。

    "@types/": "react-navigation/native",

反应导航/本机不存在

json 在此处输入图片说明

当我尝试用它运行 tsc 时,我得到了这个

在此处输入图片说明

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM