Member Junction
    Preparing search index...

    Per-schema output override. Lets a brownfield / demo schema emit into its own directory (or be skipped) instead of landing in @memberjunction/core-entities or the host app's generated folder.

    schema accepts an exact name or a % wildcard (bsd_% matches bsd_crm).

    interface SchemaOutputOverride {
        Angular?: string;
        EntitySubClasses?: string;
        GraphQLServer?: string;
        schema: string;
        skip?: ("EntitySubClasses" | "GraphQLServer" | "Angular" | "SQL")[];
    }
    Index

    Properties

    Angular?: string
    EntitySubClasses?: string
    GraphQLServer?: string
    schema: string
    skip?: ("EntitySubClasses" | "GraphQLServer" | "Angular" | "SQL")[]