Skip to main content
Module

x/dax/src/deps.ts>ExpandGlobOptions

Cross-platform shell tools for Deno and Node.js inspired by zx.
Extremely Popular
Latest
interface ExpandGlobOptions
implements Omit<GlobOptions, "os">
import { type ExpandGlobOptions } from "https://deno.land/x/dax@0.39.2/src/deps.ts";

Options for expandGlob and expandGlobSync.

Properties

optional
root: string

File path where to expand from.

optional
exclude: string[]

List of glob patterns to be excluded from the expansion.

optional
includeDirs: boolean = true

Whether to include directories in entries.

optional
canonicalize: boolean = true

Indicates whether the followed symlink's path should be canonicalized. This option works only if followSymlinks is not false.