Reputation: 2018
I have installed angular cli 6.0.4
using npm install -g @angular/cli
and when I try to create a new project using this command ng new my-first-app
It's throwing the following error:
Schematic input does not validate against the Schema: {"dryRun":false,"version":"6.0.4","skipGit":false,"skipInstall":false,"linkCli":false,"commit":true,"newProjectRoot":"projects","inlineStyle":false,"inlineTemplate":false,"routing":false,"prefix":"app","style":"css","skipTests":false}
Errors:
Data path "" should NOT have additional properties(dryRun).
How can I fix this?
Upvotes: 0
Views: 1549
Reputation: 106
Here, refer this link and this. Similar error.
Try these possible options:
Upvotes: 1