console.log / console.error dummy To use console without real implementation
npm install @mcbe/dummy-console
ts
import '@mcbe/dummy-console';
console.log('this will not show, just no runtime error');
console.log('this will not show, just no runtime error');
console.error('this will not show, just no runtime error');
``