Visual Studio 2015 RC3 TypeScript Intellisense不再工作

时间:2016-08-30 13:13:24

标签: angular typescript visual-studio-2015 intellisense

我正在使用TypeScript 1.8.10和TypeScript Tools for VS2015 1.8.1.0 Beta。 另外,我使用VS2015 RC3

我尝试升级到TypeScript 2.0,我遇到了完全相同的问题,所以我回到了TypeScript 1.8。 我试图修复VS2015,更改tsconfig.json" target"和"模块"选项,卸载整个项目并在项目文件中设置TypeScript选项,尝试升级TypeScript工具,等等;但我仍然遇到这些错误:

我的TypeScript文件无法找到@angular软件包(是的,它们在我的node_module文件夹中),即使我有" experimentalDecorators&#34,我甚至会得到实验装饰器错误我的tsconfig.json中的;:true 选项。 TypeScript库存在很多错误,如下面的屏幕截图所示:lib.d.ts和lib.es6.d.ts

问题是我的构建编译没有任何问题,但我得到了无数的智能感知错误,我不能再使用TypeScript进行编码了,所以我现在还不能再工作......

这是我的 tsconfig.json

{
  "compilerOptions": {
    "outDir": "./wwwroot/app/",
    "target": "es6",
    "module": "system",
    "moduleResolution": "node",
    "sourceMap": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true
  },
  "exclude": [
    "wwwroot",
    "node_modules",
    "typings",
    "typings/main",
    "typings/main.d.ts"
  ]
}

这是我的 package.json

{
  "name": "angular2-quickstart",
  "version": "1.0.0",
  "scripts": {
    "postinstall": "typings install",
    "tsc": "tsc",
    "tsc:w": "tsc -w",
    "typings": "typings"
  },
  "license": "ISC",
  "dependencies": {
    "@angular/common": "2.0.0-rc.5",
    "@angular/compiler": "2.0.0-rc.5",
    "@angular/core": "2.0.0-rc.5",
    "@angular/forms": "0.3.0",
    "@angular/http": "2.0.0-rc.5",
    "@angular/platform-browser": "2.0.0-rc.5",
    "@angular/platform-browser-dynamic": "2.0.0-rc.5",
    "@angular/router": "3.0.0-rc.1",
    "@angular/router-deprecated": "2.0.0-rc.2",
    "@angular/upgrade": "2.0.0-rc.5",

    "angular2-in-memory-web-api": "0.0.15",

    "systemjs": "0.19.36",
    "core-js": "^2.4.0",
    "reflect-metadata": "^0.1.3",
    "rxjs": "5.0.0-beta.11",
    "zone.js": "^0.6.12"
  },
  "devDependencies": {
    "typescript": "^1.8.10",
    "typings": "^1.0.4",
    "gulp": "^3.9.1",
    "path": "^0.12.7",
    "gulp-clean": "^0.3.2",
    "gulp-concat": "^2.6.0",
    "gulp-typescript": "^2.13.1",
    "gulp-tsc": "^1.1.5",
    "run-sequence": "^1.2.2"
  }
}

以下是我无数智能感知错误的屏幕截图:

enter image description here

任何帮助将不胜感激,我真的迷失了这些错误,我不知道该怎么做......我想我可以完全重新安装VS 2015,但如果可能的话,我会'我希望避免这样做。

编辑:添加了项目截图:

enter image description here

编辑2:我发现如果我将tsconfig.json目标选项更改为" es5",我会在@angular包中获得Build错误,即使它没有之前的任何问题。它并没有改变es6和es5库的任何内容。

5 个答案:

答案 0 :(得分:2)

如果Mica的答案的第2步是您的问题,但您无法再访问typescriptServices.js中的旧C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\CommonExtensions\Microsoft\TypeScript,那么请删除(或者为了以防万一)备份{{ 1}}文件和typescriptServices.jsRepair安装程序:https://www.microsoft.com/en-us/download/details.aspx?id=48593

答案 1 :(得分:1)

我仍然不知道问题是什么,很可能是我的Visual Studio配置文件中出现问题的一些TypeScript配置,但我通过卸载并重新安装Visual Studio 2015 RC3解决了我的问题。

答案 2 :(得分:1)

升级到typescript 2.0.3后我遇到了同样的问题。但我最后通过编辑.jsproj文件来管理它。我将此条目添加到.jsproj文件中(在某些导入方向之后)

<PropertyGroup>    
<TypeScriptToolsVersion>2.0</TypeScriptToolsVersion>
</PropertyGroup>

然而,还有其他一些事情,我以前必须解决:

1)您可能会在几周/几个月前按these步骤更换typescriptService.js吗?如果是这样,请用您的(希望存在的)备份再次替换它。

2)下载Visual Studio的Typescript并安装它 https://www.microsoft.com/en-us/download/details.aspx?id=48593

3)通过工具检查VS中的KB修补程序更新 - &gt;扩展程序&amp;更新。安装它。

4)尝试弄清楚,如果intellisense再次工作(只需创建一个新的Web / Typescript项目)。如果它不能在您想要的项目中工作,请尝试按上述方法添加PropertyGroup。

希望有所帮助:)

答案 3 :(得分:0)

我猜你的项目中没有node_modules文件夹。如果你没有在你的项目中包含那个文件夹(通过右键单击它并在项目中说明包含)。

答案 4 :(得分:0)

只需修复您必须安装一次的打字稿文件。它会为我工作。 右键单击您先前安装的打字稿备份文件,然后以管理员身份运行它,然后单击修复按钮。重新打开您的项目,然后查看.ts文件以获取智能提示