У меня работает что-то вроде ниже:
requirejs.config({
// Path mappings for the logical module names
paths: (function () {
var pathObj = {};
pathObj = {
'jquery': '../your/path/to/js/libs/jquery/jquery-3.1.1.min'
};
return pathObj;
})(),
// Shim configurations for modules that do not expose AMD
shim: {
'jquery': {
exports: ['jQuery', '$']
}
}
});
require(['jquery'],
function ($) {
$.ajax({/*some ajax call for example */});
}
);