Meteor will wrap an immediately-invoked function expression (IFFE) around the contents of any JS file, to ensure that there are no namespace conflicts between files.
I am at the very early stage of a project which uses a beta npm module. I would like to be able to run code directly from the browser console, which has global scope.
Is there a way to ask Meteor nicely not to wrap all my scripts in an IFFE, so that I can create global functions and access global variables, and so understand more easily what the beta npm module is doing (and what it is doing wrong)?
Thanks in advance.