My TypeScript config contains:
"target": "es5",
"lib": [
"es2020",
"dom"
]
Still, there are some modern features like Array.prototype.includes
and Object.entries
that are not transpiled at all. Why is that?
My TypeScript config contains:
"target": "es5",
"lib": [
"es2020",
"dom"
]
Still, there are some modern features like Array.prototype.includes
and Object.entries
that are not transpiled at all. Why is that?