3 // We only support AMD modules with an explicit define() statement.
9 jquery: '[JSURL]lib/jquery/jquery-3.5.1[JSMIN][JSEXT]',
10 jqueryui: '[JSURL]lib/jquery/ui-1.12.1/jquery-ui[JSMIN][JSEXT]',
11 jqueryprivate: '[JSURL]lib/requirejs/jquery-private[JSEXT]'
14 // Custom jquery config map.
16 // '*' means all modules will get 'jqueryprivate'
17 // for their 'jquery' dependency.
18 '*': { jquery: 'jqueryprivate' },
19 // Stub module for 'process'. This is a workaround for a bug in MathJax (see MDL-60458).
20 '*': { process: 'core/first' },
22 // 'jquery-private' wants the real jQuery module
23 // though. If this line was not here, there would
24 // be an unresolvable cyclic dependency.
25 jqueryprivate: { jquery: 'jquery' }