Angularjs的Intellisense不能处理Visual Studio代码[重复]

问题描述 投票:2回答:2

这个问题在这里已有答案:

我一直在努力让VS Code中的intellisense为角度工作,并找到了许多被弃用的解决方案。我正在使用VS代码的最新版本(1.9)。我已经在我的工作文件夹中安装了角度的打字和打字,并且还有“打字”文件夹,但仍然无法使智能感知工作。有解决方案??

enter image description here

angularjs visual-studio-code typescript-typings
2个回答
0
投票

使用创建一个jsconfig.json文件

{
    "compilerOptions": {
        "target": "es6"
    }
}

在你的角度根目录和intellisense将工作。更多信息:https://code.visualstudio.com/docs/languages/jsconfig


0
投票

我关注版本(1.9)上的http://www.bardev.com/2016/06/21/using-visual-studio-code-ceate-angularjs-applications/文章,但我无法使其工作,我刚刚更新到版本(1.13.1)并再次执行相同的过程并且它正在工作。不知道为什么它没有用,或者它在中间版本(1.10 - 1.13)中有效,但它在最新版本中有效。 Angular Intellisense is working well

© www.soinside.com 2019 - 2024. All rights reserved.