tsc
to skip compile they added an option noEmit
: https://github.com/TypeStrong/atom-typescript/blob/master/lib/main/tsconfig/tsconfig.ts#L33 (for stuff like systemjs users etc) :rose: This allows you to use tsc
as a type checker only ;)
let lambda = () => this.method()
, in ES5 the best I have found so far is self = this; let lambda = function() { self.method() }
.