OutputOptions
Less than 1 minute
Options for configuring the Output class.
Example
typescript
const options: OutputOptions = {
  silent: true,
  colors: false,
  out: process.stdout,
  err: process.stderr,
  resetOnNewLine: false,
  styles: {
    title: ['blue', 'bold'],
    error: ['red', 'underline']
  },
  inspectOptions: { depth: 2, colors: true }
};Properties
| Property | Type | Description | 
|---|---|---|
| 
 | If true, enables colored output. | |
| 
 | The output stream for error messages. | |
| 
 | Options for the  | |
| 
 | The output stream for standard messages. | |
| 
 | If true, resets styles on new lines. | |
| 
 | If true, suppresses all output. | |
| 
 | Custom styles for different message types. |