Documentation for Simbo's Packages
    Preparing search index...

    Interface GetWorkspacePathsOptions

    Options for getting workspace paths.

    interface GetWorkspacePathsOptions {
        absolutePaths?: boolean;
        patterns?: string[];
        workingDir?: string;
    }
    Index

    Properties

    absolutePaths?: boolean

    Whether to return absolute paths or relative paths. Defaults to false (relative paths).

    false
    
    patterns?: string[]

    The patterns to match workspace paths against. If undefined or empty, patterns will be determined using getWorkspacePatterns.

    workingDir?: string

    The working directory to get the workspace paths from. Defaults to the current working directory.

    process.cwd()