I would like to use requireJS and I am using jQuery. I don\'t want to use the combined version of requireJS and jQuery since I am not using the latest jQuery version. What i
I've found the best approach is to keep jQuery outside of my RequireJS build.
Just include jquery.min.js in your HTML. Then, make a jquery.js file with something like this...
define([], function() { return window.$; });