How to enqueue script before jQuery? [duplicate]

If I understood you correctly:

This might help you out: Using requirejs with wordpress

If you are just trying to enqueue requirejs with jquery:

Look at this documentation: WordPress Enqueue Scripts Documentation

So in your case it would look something like this:

wp_enqueue_script( 'script', get_template_directory_uri() . 'PATH TO YOUR REQUIREJS FILE', array ( 'jquery' ), 1.1, true);