Whether to override the project's --strictNullChecks
setting.
If true, TypeStat will set strictNullChecks
to true
regardless of your tsconfig.json
.
{
"types": {
"strictNullChecks": true
}
}
This interacts with fixers in a few ways:
- Type additions will now include
null
and/orundefined
- Property Accesses will have
!
s added as needed