Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/ter/deps/std.ts>fs.ExpandGlobOptions

A tiny wiki-style site generator with Zettelkasten flavor.
Latest
interface fs.ExpandGlobOptions
implements Omit<GlobOptions, "os">
import { type fs } from "https://deno.land/x/ter@0.15.57/deps/std.ts";
const { ExpandGlobOptions } = fs;

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.