ion-js
ion-js copied to clipboard
Add a BigInt build target
Now that we've migrated to JSBI, we should make it possible for users to build a version of ion-js
that uses BigInt
s instead of JSBI
values.
Hi is this being worked on?
Hi @omichowdhury, this is not in active development.
If we produce a BigInt
build target, it will use the same source code but will produce a second version of the library that uses BigInt
. Currently, ion-js
's test suite is in TypeScript. We would probably need to compile the test suite to JavaScript to be able to run it against both build targets' output (JS using JSBI
and JS using BigInt
).
BigInt
is now pervasive enough that we may be able to consider a major version bump that migrates from JSBI
to BigInt
. Can you tell me about your platform and use case?