An options object for application startup.

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

Properties

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.