如果我们使用的是target:es5和lib es2015,那么对象没有值
[ts] Property âvaluesâ does not exist on type âObjectConstructorâ. [2339]
Object.values(myObject)
通过添加es7 polyfill(import core js/es7/object;in polyfills.ts),我们就可以开始了!
我们没有得到任何关于现有polyfill的信息(显然),有没有办法解决这个问题?可能是使用扩展或某些设置/配置?