import { Plugin, PluginContext, TransformPluginContext } from 'rollup'; import { FilterPattern, CreateFilter } from '@rollup/pluginutils'; import * as babelCore from '@babel/core'; export interface RollupBabelInputPluginOptions extends Omit { /** * A minimatch pattern, or array of patterns, which specifies the files in the build the plugin should operate on. When relying on Babel configuration files you cannot include files already excluded there. * @default undefined; */ include?: FilterPattern; /** * A minimatch pattern, or array of patterns, which specifies the files in the build the plugin should ignore. When relaying on Babel configuration files you can only exclude additional files with this option, you cannot override what you have configured for Babel itself. * @default undefined; */ exclude?: FilterPattern; /** * Custom filter function can be used to determine whether or not certain modules should be operated upon. * Example: * import { createFilter } from '@rollup/pluginutils'; * const include = 'include/**.js'; * const exclude = 'exclude/**.js'; * const filter = createFilter(include, exclude, {}); * @default undefined; */ filter?: ReturnType; /** * An array of file extensions that Babel should transpile. If you want to transpile TypeScript files with this plugin it's essential to include .ts and .tsx in this option. * @default ['.js', '.jsx', '.es6', '.es', '.mjs'] */ extensions?: string[]; /** * It is recommended to configure this option explicitly (even if with its default value) so an informed decision is taken on how those babel helpers are inserted into the code. * @default 'bundled' */ babelHelpers?: 'bundled' | 'runtime' | 'inline' | 'external'; /** * Before transpiling your input files this plugin also transpile a short piece of code for each input file. This is used to validate some misconfiguration errors, but for sufficiently big projects it can slow your build times so if you are confident about your configuration then you might disable those checks with this option. * @default false */ skipPreflightCheck?: boolean; } export interface RollupBabelOutputPluginOptions extends Omit { /** * Use with other formats than UMD/IIFE. * @default false */ allowAllFormats?: boolean; } export type RollupBabelCustomInputPluginOptions = ( options: RollupBabelInputPluginOptions & Record ) => { customOptions: Record; pluginOptions: RollupBabelInputPluginOptions; }; export type RollupBabelCustomOutputPluginOptions = ( options: RollupBabelOutputPluginOptions & Record ) => { customOptions: Record; pluginOptions: RollupBabelOutputPluginOptions; }; export interface RollupBabelCustomPluginConfigOptions { code: string; customOptions: Record; } export interface RollupBabelCustomPluginResultOptions { code: string; customOptions: Record; config: babelCore.PartialConfig; transformOptions: babelCore.TransformOptions; } export type RollupBabelCustomInputPluginConfig = ( this: TransformPluginContext, cfg: babelCore.PartialConfig, options: RollupBabelCustomPluginConfigOptions ) => babelCore.TransformOptions; export type RollupBabelCustomInputPluginResult = ( this: TransformPluginContext, result: babelCore.BabelFileResult, options: RollupBabelCustomPluginResultOptions ) => babelCore.BabelFileResult; export type RollupBabelCustomOutputPluginConfig = ( this: PluginContext, cfg: babelCore.PartialConfig, options: RollupBabelCustomPluginConfigOptions ) => babelCore.TransformOptions; export type RollupBabelCustomOutputPluginResult = ( this: PluginContext, result: babelCore.BabelFileResult, options: RollupBabelCustomPluginResultOptions ) => babelCore.BabelFileResult; export interface RollupBabelCustomInputPlugin { options?: RollupBabelCustomInputPluginOptions; config?: RollupBabelCustomInputPluginConfig; result?: RollupBabelCustomInputPluginResult; } export interface RollupBabelCustomOutputPlugin { options?: RollupBabelCustomOutputPluginOptions; config?: RollupBabelCustomOutputPluginConfig; result?: RollupBabelCustomOutputPluginResult; } export type RollupBabelCustomInputPluginBuilder = ( babel: typeof babelCore ) => RollupBabelCustomInputPlugin; export type RollupBabelCustomOutputPluginBuilder = ( babel: typeof babelCore ) => RollupBabelCustomOutputPlugin; /** * A Rollup plugin for seamless integration between Rollup and Babel. * @param options - Plugin options. * @returns Plugin instance. */ export function getBabelInputPlugin(options?: RollupBabelInputPluginOptions): Plugin; export function getBabelOutputPlugin(options?: RollupBabelOutputPluginOptions): Plugin; export function createBabelInputPluginFactory( customCallback?: RollupBabelCustomInputPluginBuilder ): typeof getBabelInputPlugin; export function createBabelOutputPluginFactory( customCallback?: RollupBabelCustomOutputPluginBuilder ): typeof getBabelOutputPlugin; /** * A Rollup plugin for seamless integration between Rollup and Babel. * @param options - Plugin options. * @returns Plugin instance. */ export function babel(options?: RollupBabelInputPluginOptions): Plugin; export default babel;