生成: 无法找到“节点”的类型定义文件

VS 2015社区版(在家) ,npm 3.10,角2 我试图拉 Angular2安装在一个 ASP.Net MVC 5应用程序。我开始使用的模板使用了老版本的 Angular,所以我更新了包引用。

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

这是 package.json 和 typeings.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 _ module 文件夹,然后运行 npm install 再次清理了事情。当我将一个项目文件夹移动到系统上的另一个位置时,这种情况似乎最常发生。

100900 次浏览

我在通过 Visual Studio 更新软件包时遇到了一些问题。从现在起,我总是更新或添加包与 Powershell 控制台。

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

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

希望这能解决你的问题。

本地视觉工作室

如果您从一个干净的模板开始,VS 功能中的构建可能会起作用!

转到 Dependencies > npm > 右击 > Restore Packages

那就再试一次。

用于 VisualStudioTeamServices

  • 安装 node < a href = “ https://nodejs.org/en/download/”rel = “ nofollow norefrer”> https://nodejs.org/en/download/

  • 如果不使用宿主代理,请重新启动代理服务(VSTS 代理)

  • 添加一个生成任务以运行 npm install

  • 单击“工作文件夹”旁边的菜单图标,选择 project.json 文件的位置。

    enter code here

就我而言,我解决了自己的问题,希望以后能有所帮助。

npm install @types/node --save-dev

问题也可能出现在其他问题上

尝试解决方案的步骤之一张贴在这里 无法找到类型定义文件为 & # 39; 节点 & # 39;由我

有时仅仅是因为一些包丢失了。您可以尝试运行 yarn installnpm install应该解决。

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

创建一个. vscode 目录,然后在其中创建 setings.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
}
}

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

我有这个问题时,我一直与 RN 和我把一个不正确的依赖于我的软件包。

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

实际上反应导航/本机 不存在

Jsonenter image description here

当我试图运行 TSC 的时候,我得到了这个

enter image description here