Do I need to configure anything in order to develop a Meteor application with CoffeeScript? I'm trying to run a basic
Shouldn't server/server.coffee file containing
if Meteor.isServer
console.log 'hey'
be sufficient? It's not logging anything for some reason. However, other packages using CoffeeScript are functioning in the same app.
(server/server.js file with
if (Meteor.isServer) {
console.log('hey');
}
works fine.)
(Using Meteor version 0.9.3)