@karmaniverous/stan-cli
    Preparing search index...

    Type Alias RunnerConfig

    Runner-local configuration (CLI-owned scripts + engine selection inputs).

    type RunnerConfig = {
        anchors?: string[];
        excludes?: string[];
        imports?: Record<string, string[]>;
        includes?: string[];
        overlayPlan?: string[];
        scripts: ScriptMap;
        stanPath: string;
    }
    Index

    Properties

    anchors?: string[]

    High-precedence re-includes (passed to core; subject to reserved denials).

    excludes?: string[]

    Deny-list globs (engine config excludes plus any overlay-composed excludes).

    imports?: Record<string, string[]>

    Optional imports map used to stage external context into /imports.

    includes?: string[]

    Optional engine selection context (propagated to the archive phase). When present, these are honored by createArchive/createArchiveDiff.

    overlayPlan?: string[]

    Optional extra plan lines (facet view) printed in the run plan.

    scripts: ScriptMap

    CLI-owned scripts mapping (script key -> command config).

    stanPath: string

    STAN workspace directory name (e.g., ".stan").