interface RollupDynamicImportVarsOptions {
    exclude?: string | RegExp | (string | RegExp)[];
    include?: string | RegExp | (string | RegExp)[];
    warnOnError?: boolean;
}

Properties

exclude?: string | RegExp | (string | RegExp)[]

Files to exclude in this plugin (default none).

Default

[]
include?: string | RegExp | (string | RegExp)[]

Files to include in this plugin (default all).

Default

[]
warnOnError?: boolean

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