The output can be enabled using: module.exports.output: true | string. If output is a
string, the text will be used as placeholder as long as there is no log. If true, a
default placeholder is used (i.e. ...).
```jsmodule.exports ={
output:true,}// or
module.exports ={
output:'Text to display when there is no output',}```