Introduction
Explore how to enable and configure TypeScript's strict compiler flags, such as strictNullChecks, to improve code reliability. Understand the impact these settings have on catching errors at compile time and how to set them up in your project configuration file.
We'll cover the following...
We'll cover the following...
Overview
The TypeScript compiler is very configurable. There are tens of options that regulate different aspects of type checking and compilation. In this chapter, we’re going to look at some of the compiler flags that let you decide how strict the compiler should be when ...