I have an issue with transpiling ES7 code with TypeScript. This code:
const sizeByColor = { red: 100, green: 500, }; for ( const [ color, size ] of
For a standalone Typescript app, I had to add the lib es2019.object to the tsconfig, and import the polyfill to make it work :)
es2019.object
import 'core-js/es/object/from-entries';