Use CoffeeScript with Bun, old meets new.
This plugin provides support for both CoffeeScript and CSON to your Bun projects. It is roughly modelled after the esbuild-coffeescript and is still in its infancy. Your feedback or contribution is welcome!
bun install bun-plugin-coffeescriptimport CoffeePlugin from "bun-plugin-coffeescript";
Bun.build({
entrypoints: ["app.coffee"],
outdir: "dist",
target: "browser",
plugins: [
CoffeePlugin(/* compiler options */),
],
});This work is licensed under The MIT License.