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

    Type Alias RunnerConfig

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

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

    Properties

    dependency?: DependencyContext

    Optional dependency context (meta, state, sources) for context mode. When present, archive phase uses "WithDependencyContext" helpers.

    excludes?: string[]

    Deny-list globs.

    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.

    scripts: ScriptMap

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

    stanPath: string

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