Introduction to TypeScript
TypeScript is an open-source, strongly typed programming language developed and maintained by Microsoft. It is a strict syntactical superset of JavaScript, meaning every valid JavaScript program is also technically a valid TypeScript program.
Configuration (tsconfig.json)
When building a large TypeScript project, you won't use tsc index.ts repeatedly. Instead, you'll compile entire massive folders of .ts files synchronously.