esbuild-coffeescript
Version:
Bundle CoffeeScript with Esbuild
13 lines (12 loc) • 318 B
TypeScript
import type { Plugin } from 'esbuild';
interface Options {
inlineMap?: boolean;
filename?: string;
bare?: boolean;
header?: boolean;
transpile?: object;
ast?: boolean;
literate?: boolean;
}
declare const coffeeScriptPlugin: (options?: Options) => Plugin;
export default coffeeScriptPlugin;