Member Junction
    Preparing search index...
    interface SchemaEmitOptions {
        concurrency?: number;
        dirtySchemas?: DirtySchemaSet;
        parallel?: boolean;
        perSchema?: boolean;
        writeIfChanged?: boolean;
    }
    Index

    Properties

    concurrency?: number

    Max schemas to assemble in parallel. Defaults to 8.

    dirtySchemas?: DirtySchemaSet

    Schemas whose files must be rebuilt. 'all' rebuilds every schema (used by --skipdb file-only runs). A Set rebuilds only those schemas plus any schema whose file is missing. An omitted / empty set with existing files is the fast path: skip the string-build entirely.

    parallel?: boolean

    Assemble independent schema files in parallel. Defaults to true.

    perSchema?: boolean

    When true (the default), emit one TypeScript file per schema plus a thin barrel. When false, emit the historical single monolith.

    writeIfChanged?: boolean

    Skip the disk write when bytes are identical. Defaults to true.