1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| export interface RollupDynamicImportVarsOptions {
| /**
| * Files to include in this plugin (default all).
| * @default []
| */
| include?: string | RegExp | (string | RegExp)[]
| /**
| * Files to exclude in this plugin (default none).
| * @default []
| */
| exclude?: string | RegExp | (string | RegExp)[]
| /**
| * By default, the plugin quits the build process when it encounters an error. If you set this option to true, it will throw a warning instead and leave the code untouched.
| * @default false
| */
| warnOnError?: boolean
| }
|
|