Coffeescript plugin for Vite that generates version 3 source maps
There is a an existing vite-plugin, but the source maps generated by this plugin are not used by modern vite. This plugin solves the issue.
// vite.config.js
import { defineConfig } from "vite";
import coffee from "vite-plugin-coffee3";
export default defineConfig({
plugins: [
coffee(),
],
});
npm install --save-dev vite-plugin-coffee3