It's a Typescript package that compiles logging macros from:
$logInfo('Cohost', `Hello ${username}!`);
to:
console.log('(Cohost)', `Hello ${username}!`);
And will exclude the macros from the compiled JavaScript depending on the plugin settings.
I needed this for my game because I wanted to exclude debug console messages in "shipping" builds.
These are the things I'm up to when I'm supposedly "on holiday" π
I guess you all love my package, huh π

