TypeScript (latest release 2.4.1) strictNullChecks is not reliable. It does not work as it should at least in two basic cases. It does not enforce initialization of varaiables and properties, so they will be undefined, even if undefined is not in the domian.
Code that (should not) compiles in strictNullChecks:
class X {
public x: number;
}
let x: number;
function f(): number {
return x;
}
let m: number = f();
let c: X = new X();
console.log(`m: ${m}`);
console.log(`c.x: ${c.x}`);results in:
m: undefined
c.x: undefinedWith ts-strict-null-checks You will be warned about not initialized variables and properties.
Install from npm to your devDependencies:
npm install --save-dev tslint-strict-null-checksConfigure tslint to use the tslint-strict-null-checks folder. Add the following path to the rulesDirectory setting in your tslint.json file:
{
"rulesDirectory": [
"node_modules/tslint-strict-null-checks/rules"
],
"rules": {
...
}
}Enforces initialization of variables and properties, when undefined is not in their domain.
"no-uninitialized": [true, "variables", "properties"]If You find any gap where undefined can be smuggled please open an issue.
Please contribute using Github Flow. Create a branch, add commits, and open a pull request.