Your global Angular CLI version is greater than your local version

Warning in Angular project:

Your global Angular CLI version ... is greater than your local version ... 
The local Angular CLI version is used.

To disable this warning use "ng config -g cli.warnings.versionMismatch false".

Solution is to run the below comamnd in your Angular project to sync it with the latest Angular version.

npm install --save-dev @angular/cli@latest

Run npm i again to conform any errors.

You will not recieve the Angular CLI version is greater than your local version warning now.