Anthony
Anthony

Reputation: 2416

Intellij idea angular cli in menu not showing

On one of my intellij IDEA projects I can go to File > new > angular cli. However, on another project where I imported maven projects before the angular project, I can't get the angular cli menu option. Any ideas what I need to do?

Upvotes: 0

Views: 2998

Answers (3)

Joakim
Joakim

Reputation: 2142

It appeared for me after installing the angularJS plugin, as per instructions here.

Upvotes: 0

Omer Gurarslan
Omer Gurarslan

Reputation: 1027

Starting with Angular 6, angular-cli.json file is replaced with angular.json file. Yet older versions of IntelliJ IDEA keeps looking for angular-cli.json file in order to provide framwork support. So simply upgrading IntelliJ IDEA to a newer version should fix the problem.

Upvotes: 0

lena
lena

Reputation: 93748

To enable angular-cli actions in New menu, you normally need to ensure that there is .angular-cli.json in your project root folder. This won't work if this file is located in a subfolder (see WEB-24662, it is fixed in 2017.2)

Upvotes: 1

Related Questions