Configuration options for the production build
Optional
esbuildOptions?: Pick<BuildOptions, "footer">Additional options to pass to esbuild
Optional
mode?: "module" | "server"The type of bundle to generate. If set to module
, the bundle will be a module with
the AppContainer as the default export. If set to standalone, running the bundle will
launch the production server.
Optional
onComplete?: () => Promisable<void>A callback function to invoke when the build is complete
The path where the bundle should be written
The entry point for the libnest
CLI.
This should be a module whose default export is a function that initializes the application.
Optional
globals?: { [key: string]: Jsonifiable }Optional global variables that should be defined at runtime.
Configuration options for a
libnest
application.