Member Junction
    Preparing search index...

    Options for the entity name scanner.

    interface EntityNameScanOptions {
        EntitySubclassesPath?: string;
        ExcludePatterns?: string[];
        Fix?: boolean;
        TargetPath: string;
        Verbose?: boolean;
    }
    Index

    Properties

    EntitySubclassesPath?: string

    Path to entity_subclasses.ts for building the rename map dynamically. If not provided, uses the embedded rename map compiled into this package.

    ExcludePatterns?: string[]

    Additional glob patterns to exclude from scanning.

    Fix?: boolean

    Whether to apply fixes in place. Default: false (dry-run).

    TargetPath: string

    File or directory to scan

    Verbose?: boolean

    If true, logs progress to console. Default: true.