UNPKG

546 BTypeScriptView Raw
1export interface RollupDynamicImportVarsOptions {
2 /**
3 * Files to include in this plugin (default all).
4 * @default []
5 */
6 include?: string | RegExp | (string | RegExp)[]
7 /**
8 * Files to exclude in this plugin (default none).
9 * @default []
10 */
11 exclude?: string | RegExp | (string | RegExp)[]
12 /**
13 * 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.
14 * @default false
15 */
16 warnOnError?: boolean
17}