The new TypeScript cells added in 1.4.0 don’t handle expressions correctly; the TypeScript transpiler interprets all input as a program, and hence promotes an expression to an expression statement. This in turn means that implicit display is disabled. So this:
Becomes this:
A more severe case is that expressions can be misinterpreted. This:
Is incorrectly converted into a block statement containing a label statement:
Whereas the intended interpretation is an object literal expression: