No Implicit `any`
This lesson introduces the `noImplicitAny` compiler flag.
We'll cover the following...
Definition
The first and the most important flag is noImplicitAny
. Let’s look at its definition from the documentation:
Raise error on expressions and declarations with an implied any type.
In other words, when you ...