**TypeScript Version:** 2.2.0-dev20170112 **Code** ```json { "compilerOptions": { "strictNullChecks": true }, } ``` ```ts let foo : object = null ``` **Expected behavior:** No error due to typeof null === "object" **Actual behavior:** Error. Type null is not assignable to type object