For some reasons, I want to use Angular v5
if I run the below command,it builds an app in angular 6
which I don't want.
ng new hello //this creates angular app in the latest version
I ran the command in the below order
npm init //generated package.json
The above command generated package.json file, I swapped the content of package.json file.
https://jsoneditoronline.org/?id=5acc3c072e164c4a8235152516e44f54
npm install //installed all the node modules
now when I run command to generate the angular component (or any angular enitity) it throws the below error.
This command can only be run inside of a CLI project.
How do I make this app as angular CLI with Angular v5??