@vivantel/virage-core
    Preparing search index...

    Interface SourceFilter

    Filter applied when listing items from a source provider. All fields are optional; providers apply whichever they support.

    interface SourceFilter {
        ignore?: string[];
        include?: string[];
    }
    Index
    ignore?: string[]

    Exclude items whose path matches any of these globs.

    include?: string[]

    Only return items whose path matches at least one of these globs.