Configuration options for the production build
Optionalbundle?: booleanOptionalmode?: "module" | "server"OptionalnativeDependencies?: (KnownNativeDependencyName | NativeDependency)[]Dependencies that cannot survive bundling, because they load a native artifact through a path relative to their own source. Each is emitted next to the bundle and redirected there at startup. Naming one the application never imports fails the build.
OptionalonComplete?: () => 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.
OptionalglobalsOptional global variables that should be defined at runtime.
Configuration options for a
libnestapplication.