UNPKG

@greenwood/plugin-babel

Version:

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

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