config-rocket
    Preparing search index...

    Interface RocketAssembleOptions

    interface RocketAssembleOptions {
        frameDir?: string;
        fuelDir?: string;
        hookable?: Hookable<
            RocketAssembleHooks & ParseRocketConfigHooks & FileOutputHooks,
            string,
        >;
        outDir: string;
        rocketConfig?: string;
    }
    Index

    Properties

    frameDir?: string

    Path to the rocket frame directory.

    fuelDir?: string

    Path to the rocket fuel directory.

    hookable?: Hookable<
        RocketAssembleHooks & ParseRocketConfigHooks & FileOutputHooks,
        string,
    >

    A hookable instance to hook into the rocket assemble (and related) process.

    outDir: string

    Output directory.

    rocketConfig?: string

    Path to the rocket config file.

    rocket.config.ts in parent of frameDir.