1 |
|
2 |
|
3 | import { Plugin } from "rollup";
|
4 |
|
5 | export interface Options {
|
6 |
|
7 | include?: Array<string | RegExp> | string | RegExp | null | undefined;
|
8 | exclude?: Array<string | RegExp> | string | RegExp | null | undefined;
|
9 |
|
10 |
|
11 | sourceMap?: boolean | undefined;
|
12 |
|
13 |
|
14 | process?: boolean | undefined;
|
15 | global?: boolean | undefined;
|
16 | buffer?: boolean | undefined;
|
17 | dirname?: boolean | undefined;
|
18 | filename?: boolean | undefined;
|
19 | baseDir?: string | undefined;
|
20 | }
|
21 |
|
22 | export default function globals(options?: Options): Plugin;
|