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

    Interface TagRule

    A path-glob → tag mapping rule applied at index time within a fileSet (ADR-043, ADR-046). Files matching match (minimatch glob, relative to source root) get add appended to their ChunkMeta.tags.

    interface TagRule {
        add: string[];
        match: string;
    }
    Index
    add: string[]

    Tags to add when the pattern matches (e.g. ["team:payments", "pci-scope"]).

    match: string

    Minimatch glob pattern (relative to source root, e.g. "src/payments/**").