KC's Workspace
    Preparing search index...
    interface Workspace {
        config?: string | boolean;
        exclude?: Arrayable<string>;
        include?: string[] | string & {} | "auto";
    }
    Index
    config?: string | boolean

    Path to the workspace configuration file.

    exclude?: Arrayable<string>

    Exclude directories from workspace. Defaults to all node_modules, dist, test, tests, temp, and tmp directories.

    ['**/node_modules/**', '**/dist/**', '**/test?(s)/**', '**/t?(e)mp/**']
    
    include?: string[] | string & {} | "auto"

    Workspace directories. Glob patterns are supported.

    • auto: Automatically detect package.json files in the workspace.
    'auto'