43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import { Plugin } from 'rollup';
|
|
|
|
type Injectment = string | [string, string];
|
|
|
|
export interface RollupInjectOptions {
|
|
/**
|
|
* All other options are treated as `string: injectment` injectrs,
|
|
* or `string: (id) => injectment` functions.
|
|
*/
|
|
[str: string]:
|
|
| Injectment
|
|
| RollupInjectOptions['include']
|
|
| RollupInjectOptions['sourceMap']
|
|
| RollupInjectOptions['modules'];
|
|
|
|
/**
|
|
* A minimatch pattern, or array of patterns, of files that should be
|
|
* processed by this plugin (if omitted, all files are included by default)
|
|
*/
|
|
include?: string | RegExp | ReadonlyArray<string | RegExp> | null;
|
|
|
|
/**
|
|
* Files that should be excluded, if `include` is otherwise too permissive.
|
|
*/
|
|
exclude?: string | RegExp | ReadonlyArray<string | RegExp> | null;
|
|
|
|
/**
|
|
* If false, skips source map generation. This will improve performance.
|
|
* @default true
|
|
*/
|
|
sourceMap?: boolean;
|
|
|
|
/**
|
|
* You can separate values to inject from other options.
|
|
*/
|
|
modules?: { [str: string]: Injectment };
|
|
}
|
|
|
|
/**
|
|
* inject strings in files while bundling them.
|
|
*/
|
|
export default function inject(options?: RollupInjectOptions): Plugin;
|