var require = { baseUrl : '[BASEURL]', // We only support AMD modules with an explicit define() statement. enforceDefine: true, skipDataMain: true, paths: { jquery: '[JSURL]lib/jquery/jquery-3.1.0.min[JSEXT]', jqueryui: '[JSURL]lib/jquery/ui-1.11.4/jquery-ui.min[JSEXT]', jqueryprivate: '[JSURL]lib/requirejs/jquery-private[JSEXT]' }, // Custom jquery config map. map: { // '*' means all modules will get 'jqueryprivate' // for their 'jquery' dependency. '*': { jquery: 'jqueryprivate' }, // 'jquery-private' wants the real jQuery module // though. If this line was not here, there would // be an unresolvable cyclic dependency. jqueryprivate: { jquery: 'jquery' } } };