Replies: 1 comment
-
+1, Upvoted, I came here to ask this question. I hope there will be support one day. My specific issue: I am building a custom HTML template for Tumblr, they do not support template literals because their own templating language uses curly braces for variable injection. I am also not a fan of having Otherwise very much enjoy using Bun. |
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
-
I am interested in converting a sizable Webpack (CRA) app to
Bun.build
andBun.serve
but one requirement is being able to down-level syntax to ensure that it's compatible with our target browsers, which is basically Chrome >= 79: not terribly old but not super fresh. Unfortunately, Babel is really good at this.I see this small note in the first row of the table in https://bun.sh/docs/bundler#content-types:
How would I go about integrating a tool to down-convert syntax in my build? Is there a plugin I can use or a reliable fast library for which I could write my own plugin? My ideal would be to define settings in
tsconfig.json
liketarget
andmodule
and have the system go from there.Beta Was this translation helpful? Give feedback.
All reactions