如果我们使用目标:es5和lib es2015,则对象没有值
[ts] Property ‘values’ does not exist on type ‘ObjectConstructor’. [2339]
Object.values(myObject)
通过添加es7 polyfill(在polyfills.ts中导入“ core-js / es7 / object”;导入),我们很好!!
我们没有获得有关现有polyfill的任何信息(显然),有没有办法“解决”该问题?也许使用扩展程序或某些设置/配置?