⬅️ FEM TypeScript Fundamentals
Strict
-
noImplicitAny
: forces us to provide explicit types for every function parameter -
strictNullChecks
: TypeScript doesn’t allow us to assignnull
orundefined
to variables unless their types includenull
orundefined
-
strictPropertyInitialization
-
strictFunctionTypes
-
Strict mode is disabled by default, always set: