Reputation: 2478
According to an Angular book (updated to Angular 9) that I'm currently reading, the Angular installation steps are:
Then, I went to the official Angular setup documentation and the Typescript and Typings installation are not included.
Do you know what is the purpose of those installations? Is it a deprecated way of installing Angular? The latest Angular version already include those packages?
I made some research but I couldn't find an answer to these questions.
Thanks!
Upvotes: 1
Views: 3459
Reputation: 71911
The only thing necessary is Node.js. There is no benefit of installing typescript. This will all be handled by the Angular CLI. They require a specific typescript version, which is usually one version behind the actual latest version of typescript.
My advice, stick to the excellent guides on angular.io. It's your safest bet.
Upvotes: 7