While the various modules are surrounded by...
define(['jquery', ...], function( $, ... ) {
... many of them make references to the global jQuery variable, which does not exist if jQuery.noConflict(true); has been called.
In general AMD modules should avoid accessing variables in the global scope.