Replies: 1 comment 1 reply
-
Hey! I agree. We could also use a version later than |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The current Semaphore libraries are written in TypeScript and are "compiled" into JavaScript with Rollup and
tsc
. The target in the currenttsconfig.ts
configuration is ES5, i.e. the first major revision to JavaScript.Targeting ES6 (ECMAScript 2015) should be generally fine today. It's widely supported across modern browsers and environments and it would allow Semaphore bundles to use many ES6 features natively, like arrow functions, promises, and classes, which can improve code readability and efficiency.
Beta Was this translation helpful? Give feedback.
All reactions