data-cap
    Preparing search index...

    Interface DiscoverOptions

    Options for discoverCapabilityFiles.

    interface DiscoverOptions {
        exclude?: readonly string[];
        fs: BuildFileSystem;
        include?: readonly string[];
        root: string;
    }
    Index
    exclude?: readonly string[]

    Glob patterns (relative to root) that prune a file or directory regardless of include.

    The filesystem capability -- ./build never imports node:fs (ADR 0058).

    include?: readonly string[]

    Glob patterns (relative to root) a file must match at least one of to be included. Defaults to every .ts/.tsx file.

    root: string

    Directory to walk.