How to use TypeScript in your ASP.NET MVC Project

ZeroesAndOnes
9 min readJan 27, 2022

In this article I will walk you through the steps demonstrating how to use TypeScript in your ASP.NET MVC project.

1 — What is TypeScript?

TypeScript is a programming language developed and maintained by Microsoft. It is a strict syntactical superset of JavaScript and adds optional static typing to the language. TypeScript is designed for the development of large applications and transcompiles to JavaScript.

--

--