Skip to main content
Module

x/lume/deps/fs.ts>ExpandGlobOptions

🔥 Static site generator for Deno 🦕
Very Popular
Go to Latest
interface ExpandGlobOptions
implements Omit<GlobOptions, "os">
import { type ExpandGlobOptions } from "https://deno.land/x/lume@v2.1.2/deps/fs.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.