I'm using requirejs for the first time on a project. I'm working in an environment that has a lot of Javascript in place already, and I'm looking for clean ways to introduce my own code.
The problem I'm having is that I can't seem to find a module of jQuery that I can load that doesn't clobber existing jQuery.
I was surprised that even require-jquery.js introduces a global version of jQuery. Is there a way to load jQuery as a module without introducing any globals?