Skip to content

PluginContext

Context information passed during plugin execution. Includes workspace path and configuration data.

Signature

typescript
interface PluginContext {
  workspacePath?: string;
  config?: ResolvedConfig;
}

Properties

  • workspacePath · string

    Absolute path to the workspace root directory

  • config · Config

    Complete configuration object including project, command, and plugin settings

Released under the MIT License.