Adam Comella
Adam Comella
I ran into this as well. I want to add a couple of specific points: - [The doc comment](https://github.com/nodegit/nodegit/blob/eeb2e3831f2768be2f389b6982ac5eb1fffb1297/lib/tree.js#L141) claims that `walk` returns an `EventEmitter` but the returned object actually...
Looks like a fix was submitted in pull request #410.
@jrieken Here are the TypeScript compiler options I'm using: ```js { declaration: false, noResolve: false, jsx: 'react', reactNamespace: 'RX', module: 'commonjs', target: 'es5', experimentalDecorators: true, noImplicitAny: true, noImplicitReturns: true, noImplicitThis:...