Very happy to hear TypeScript support is included! I wouldn't like to work on a large app without it.
Sandstorm is an open source platform for self-hosting web apps
This example from the article looks like an argument for immutability to me. interface A { x: number; } let a: A = {x: 3} let b: {x: number | string} = a; b.x = "unsound"; let x: number = a.x; // unsound a.x.toFixed(0);…
Very happy to hear TypeScript support is included! I wouldn't like to work on a large app without it.
Sandstorm is an open source platform for self-hosting web apps
This example from the article looks like an argument for immutability to me. interface A { x: number; } let a: A = {x: 3} let b: {x: number | string} = a; b.x = "unsound"; let x: number = a.x; // unsound a.x.toFixed(0);…