Configuration options for the user-defined settings in the libnest CLI.

interface UserConfigOptions {
    entry: string;
    globals?: { [key: string]: unknown };
}

Properties

Properties

entry: string

The entry point for the libnest CLI.

This should be a module whose default export is a function that initializes the application.

globals?: { [key: string]: unknown }

Optional global variables that should be defined at runtime.