electron-ipc-module
    Preparing search index...

    Interface IpcBridgeOptions

    User-facing options for the Rollup bridge plugin.

    interface IpcBridgeOptions {
        ipcDir?: string;
        logger?: LoggerLike;
        outFile?: string;
        tsconfig?: string;
    }
    Index
    ipcDir?: string

    Directory or glob of *.ipc.ts files. Defaults to ./src/ipc.

    logger?: LoggerLike

    Where generation progress and analyzer warnings go. Defaults to a labelled console logger that prints info and above.

    Supply one to silence the generator in a watch loop, to route output into a build tool's own reporter, or to see the per-module debug detail the default logger drops.

    outFile?: string

    Path of the generated bridge file. Defaults to ./src/generated/ipc-bridge.ts.

    tsconfig?: string

    tsconfig used to type-check the analyzed files. Defaults to ./tsconfig.json.