KC's Workspace
    Preparing search index...

    Interface RollupDynamicImportVarsOptions

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

    Properties

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

    Files to exclude in this plugin (default none).

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

    Files to include in this plugin (default all).

    []
    
    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.

    false