evalution
    Preparing search index...

    Interface GlobOptions

    Options accepted by FileProvider.glob.

    interface GlobOptions {
        absolute?: boolean;
        cwd?: string;
        ignore?: readonly string[];
    }
    Index

    Properties

    absolute?: boolean

    When true, yielded paths are absolute; otherwise they are relative to cwd.

    cwd?: string

    The directory to search from. Defaults to process.cwd().

    ignore?: readonly string[]

    Glob patterns whose matches are excluded from results.