Problem Statement
Turn on strict family in one go:
Explanation
Setting `"strict": true` enables a bundle of strictness flags (like `noImplicitAny`, `strictNullChecks`) that catch bugs early.
Code Solution
SolutionRead Only
// tsconfig.json
{
"compilerOptions": {
"strict": true
}
}