Closed
Description
Currently we use "strict": true
but have "strictNullChecks": false
. When we run yarn tsc-strict
we get 🎉 All files passed
.
{
"compilerOptions": {
...
"strict": true,
"strictNullChecks": false,
"plugins": [
{
"name": "typescript-strict-plugin"
}
]
}
}
I am not sure how the plugin should work but I thought it would ignore the strictNullChecks
and make it true
.
I would like to keep the tsconfig.json
as is and not remove "strictNullChecks": false
so it can work with our current workflow. Can you allow tsc-strict
to take the --project
and -p
command line options so we can point to another file (tsc-strict -p tsconfig-strict.json
)?