I'm getting the following error:
events.js:141
throw er; // Unhandled 'error' event
^
TypeScript error: node_modules/gulp-typescript/release/compiler.d.ts(32,22): Error TS1005: '=' expected.
My gulpfile https://github.com/rtaycher/2048-Clone/blob/master/gulpfile.js
I also have a declaration file global.d.ts:
interface Array<T> {
includes(searchElement: T) : boolean;
}
Some googling indicates that declaration files might cause issues.