You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
AFAIK TypeScript should be able to run in ES5 environments. If it's not, you can close this issue.
tsconfig-base.json contains "lib": ["es2015"] which allows uses of ES6 features within the compiler. This is basically the reason #28918 happened in the first place.
The change in #25140 was just to pull in the iterator types; so changing the lib to ["es5", "es2015.iterable"] should be OK and prevent us form using es6 methods unintentionally.
AFAIK TypeScript should be able to run in ES5 environments. If it's not, you can close this issue.
tsconfig-base.json
contains"lib": ["es2015"]
which allows uses of ES6 features within the compiler. This is basically the reason #28918 happened in the first place.The change was made by @weswigham in #25140.
The text was updated successfully, but these errors were encountered: