@semo/core
    Preparing search index...

    Interface SemoConfig

    Known configuration fields in .semorc.yml. Plugins may extend via index signature.

    interface SemoConfig {
        commandDir?: string;
        commandMakeDir?: string;
        disableGlobalPlugin?: boolean;
        disableHomePlugin?: boolean;
        extendDir?: string;
        extendMakeDir?: string;
        hookDir?: string;
        hookMakeDir?: string;
        pluginDir?: string | string[];
        pluginPrefix?: string | string[];
        scriptDir?: string;
        typescript?: boolean;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    commandDir?: string
    commandMakeDir?: string
    disableGlobalPlugin?: boolean
    disableHomePlugin?: boolean
    extendDir?: string
    extendMakeDir?: string
    hookDir?: string
    hookMakeDir?: string
    pluginDir?: string | string[]
    pluginPrefix?: string | string[]
    scriptDir?: string
    typescript?: boolean