0
我收到以下錯誤而失敗:打字稿編譯器奇怪的錯誤
events.js:141
throw er; // Unhandled 'error' event
^
TypeScript error: node_modules/gulp-typescript/release/compiler.d.ts(32,22): Error TS1005: '=' expected.
我gulpfile https://github.com/rtaycher/2048-Clone/blob/master/gulpfile.js
我也有一個聲明文件global.d.ts:
interface Array<T> {
includes(searchElement: T) : boolean;
}
一些谷歌搜索表明聲明文件可能會導致問題。
你正在使用什麼版本的打字稿? –
tsc版本1.8.10 –