Closed caleb-mabry closed 5 months ago
Status: Accepted
Discussion:
Proposal accepted to make the tsconfig strict
instead of strictNullChecks
. Had unanimous decision to move forward with this approach in our weekly Discord community call. Converting the issue from proposal to enhancement.
Problem
When working on this project,
strictNullChecks
isn't added to ourtsconfig.json
. While developing, this causes issues. For example, looking atquery
here, you can seeparameters
has the potential to beundefined
. BecausestrictNullChecks
isn't set to true, the IDE doesn't realize thatparameters.forEach
could be incorrect becauseparameters
may be undefined.Solution
Add the
strictNullChecks
valueAdditional context