An options object for application startup.

interface IStartOptions {
    bubblingKeydown?: boolean;
    hostID?: string;
    ignorePlugins?: string[];
    startPlugins?: string[];
}

Properties

bubblingKeydown?: boolean

Whether to capture keydown event at bubbling or capturing (default) phase for keyboard shortcuts.

hostID?: string

The ID of the DOM node to host the application shell.

Notes

If this is not provided, the document body will be the host.

ignorePlugins?: string[]

The plugins to not activate on startup.

Notes

This will override startPlugins and any autoStart plugins.

startPlugins?: string[]

The plugins to activate on startup.

Notes

These will be in addition to any autoStart plugins.