tact-lang / tact

Tact compiler main repository
https://tact-lang.org
MIT License
394 stars 111 forks source link

Decrease version of ES standard library #1019

Open verytactical opened 2 weeks ago

verytactical commented 2 weeks ago

Previously lib field of tsconfig.json was unset and silently implied usage of ESNext version of standard library that basically enables all the ES features, even those that weren't standardized yet. Recently this setting was made explicit, but now we should decrease version of standard library to the lowest possible setting to improve DX for our users with older versions of Node.

Discovered in #1009