UNPKG

esbuild-coffeescript

Version:
13 lines (12 loc) 318 B
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;