Replies: 2 comments 1 reply
-
For now I've set this to something lower to allow people to use new feature while testing on Safari that be could not have implemented all features (less and less true actually) |
Beta Was this translation helpful? Give feedback.
1 reply
-
An option is available in the latest version! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When targeting es2020 in swc, private fields are transformed to
WeakMap
, and operations on them are converted to_class_apply_descriptor_get
and_class_apply_descriptor_set
functions, as can be seen here, making it hard to inspect private fields in the debugger.Is it possible to default
target
to es2022 or maketarget
configurable?Beta Was this translation helpful? Give feedback.
All reactions