@oazmi/superbuild - v0.1.0
    Preparing search index...

    Interface OnEmitOptions_InputFilter

    a single input file filteration rule used in OnEmitOptions.

    interface OnEmitOptions_InputFilter {
        filter: RegExp;
        namespace?: string;
        loader?: any;
        transformLoader?: any;
    }
    Index

    Properties

    filter: RegExp

    a resolved path name filter of the input resource that is to be matched by at least one of the emitted file's inputs.

    namespace?: string

    specify an optional namespace in which the loaded input file must be part of.

    loader?: any

    specify an optional loader which should have been used to load this input file by the SuperPluginBuild.onLoad hook.

    transformLoader?: any

    specify an optional transform-loader which should have been used to load this input file during the transformation hook (SuperPluginBuild.onTransform). if no SuperPluginBuild.onTransform hook captured this input resource, then the loader value from the prior SuperPluginBuild.onLoad stage will be used to match against this option.