main.js
require.config({
baseUrl:"/",//
paths:{
"jquery" :"jquery.min",
},
})
<html>
<head>
<script data-main="scripts/main" src="scripts/require.js"></script>
<script src="scripts/other.js"></script>
</head>
<body>
</body>
</html>
other.js
require( ["jquery"], function( $ ) {
console.log("ssssssss");
});