Reputation: 2416
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
Reputation: 2142
It appeared for me after installing the angularJS plugin, as per instructions here.
Upvotes: 0
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