Hacker News new | ask | show | jobs
by rcfox 2694 days ago
`const testVar = {}` doesn't mean that the object is immutable, it means that testVar will never point to something else.
1 comments

He's not saying that TypeScript complains because he thinks TypeScript considers testVar immutable here. TypeScript will complain because it will infer the type of testVar is an object with no properties, and `testVar.asdf = "asdf";` is an attempt to write to a nonexistent property.