I am currently working with Angular2-Meteor and TypeScript within the Meteor framework version 1.3.2.4.
When I utilize console.log('test');
on the server side, it functions as expected.
However, I encountered a warning in my terminal:
Cannot find name 'console'.
How can I resolve this warning?
Alternatively, is there a specific method like Meteor.log
that can be used on the server side? Thank you