I'm getting familiar with NativeScript and I downloaded the following Angular-based NativeScript project from play.nativescript.org:
https://play.nativescript.org/?template=play-ng&id=Hqp5UQ&v=320
I opened a cmd prompt from the top-level directory that I downloaded and tried "ng serve." I don't remember the specific error but git bash instructed me to run the following cmd:
npm install --save-dev @angular/cli@latest
I tried "ng serve" again but then git bash returned the following error:
"Local workspace file ('angular.json') could not be found"
I googled this and found a thread on SO where someone mentioned to exec "ng update":
Error: Local workspace file ('angular.json') could not be found
So I did an "ng update" but now git bash returns an error:
"Error compiling schema", followed by a bunch of minified js followed by a red error message at the end "Unexpected token function"
Any idea what I might be missing here? What steps should I follow to get this up and running if I start over from scratch?