In this tutorial, we’ll learn how to check and update the TypeScript version in your Angular 10 project.

Angular is based on TypeScript instead of plain JavaScript. TS provides types and OOP constructs on top of JS but it doesn’t run in the browser instead gets compiled in the developer’s machine to JS before it can be shipped to production and executed in a web browser.

Angular 9 shipped with TypeScript 3.7 while Angular 10 came with TypeScript 3.8.

TS requires some configuration files such as the tsconfig.json file which contains various settings to configure the compiler but thanks to Angular CLI, you can scaffold a new project with TS pre-configured and start writing your code without dealing with any complexities related to the front-end development tooling.

Each new version of TypeScript comes packed with many new features that you can use to simply your coding and development journey.

#angular #typescript

Angular 10 TypeScript Version
4.65 GEEK