Interface GlobOptions

Options for globToRegExp, joinGlobs, normalizeGlob and expandGlob.

interface GlobOptions {
    caseInsensitive?: boolean;
    extended?: boolean;
    globstar?: boolean;
}

Properties

caseInsensitive?: boolean

Whether globstar should be case-insensitive.

{false}
extended?: boolean
{true}
globstar?: boolean

Globstar syntax. See https://www.linuxjournal.com/content/globstar-new-bash-globbing-option. If false, ** is treated like *.

{true}