Angular4 What definition of Iterable should I use

ε祈祈猫儿з 提交于 2019-11-28 14:28:41

Following the migration stated in their changelog you should add es2015.iterable as a lib inside your tsconfig.json:

{
  ...,
  "compilerOptions" : {
     ...,
     "lib": ["es6", "dom", "es2015.iterable"]
   }
}

I tried the accepted answer for this question but it didn't work in my case.

In my case I added below line in my main.ts

///<reference path="./../typings/globals/core-js/index.d.ts"/>

which fixed the issue, hope this helps someone.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!