# Getting Angular Intellisense in Visual Studio Code (revised)


Following the recent release of [Visual Studio Code](http://code.visualstudio.com/) v1, here is an updated version of my [Getting Angular Intellisense in Visual Studio Code](https://weblogs.asp.net/lduveau/getting-angular-intellisense-in-visual-studio-code) tutorial:

  

### 1\. jsconfig.json

Notice you now have an icon to generate the **jsconfig.json** file!

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1701608837551/92795971-b0bc-4c7e-86d7-fa2639a05a7d.png)

  

Now right-click on the project’s folder and select **Open in Command Prompt** (or **Open in Terminal** on OS X or Linux).

### 2\. Install Typings

In the command prompt (or terminal), type the following command:

**npm install typings –D**

Assuming you have a package.json file, the –D argument will have Typings listed as a dev dependency.

  

### 3\. Grabs the typings files from the Definitely Typed repository

**typings install angular --ambient --save**

This will create a typings.json file and a typings folder with the .d.ts files.

  

Now open a js file and you should have Angular IntelliSense working!

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1701608838376/d68760d2-27e7-4209-977c-6771838f371b.png)

Hopefully this will help you have a great IntelliSense experience when using Angular in Visual Studio Code!

