UNPKG

@greenwood/plugin-babel

Version:

A Greenwood plugin for using Babel and applying it to your JavaScript.

12 lines (8 loc) 320 B
import type { ResourcePlugin, RollupPlugin } from "@greenwood/cli"; type BabelPluginOptions = { extendConfig?: boolean; }; export type BabelPlugin = (options?: BabelPluginOptions) => Array<ResourcePlugin, RollupPlugin>; declare module "@greenwood/plugin-babel" { export const greenwoodPluginBabel: BabelPlugin; }