@oazmi/superbuild - v0.3.2
    Preparing search index...

    Interface SuperBuildOptions

    interface SuperBuildOptions {
        debuggingLogs?: boolean | LoggerFunction;
        loader?: { [ext: string]: AutoSuggestOrString<Loader> };
        plugins?: SuperPluginType[];
        [key: string]: BuildOptions;
        [key: number]: BuildOptions;
        [key: symbol]: BuildOptions;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: BuildOptions
    • [key: number]: BuildOptions
    • [key: symbol]: BuildOptions
    Index

    Properties

    debuggingLogs?: boolean | LoggerFunction

    enable internal logging of super-build for debugging, when DEBUG.LOG is enabled.

    when set to true, the logs will show up in your console via console.log(). you may also provide your own custom logger function if you wish.

    false

    loader?: { [ext: string]: AutoSuggestOrString<Loader> }

    specify what loader (generic or built-in) to use for various file extensions.

    plugins?: SuperPluginType[]

    the superbuild-compatible plugins.