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

    Properties

    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.

    include?: Arrayable<string>

    Workspace directories. Glob patterns are supported.

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