In RequireJS - Cannot alias jQuery name in path
问题 I'm a RequireJS noob. When I use "require.config" and include a path to jQuery with a name different than jQuery, results are not as expected. Here's a very simple example to help explain my issue. Structure of files root ├── Index.htm └── scripts ├── libs │ ├── jquery-1.7.1.js │ └── require.js ├── main.js └── someModule.js index.htm <html> <head> <title>BackboneJS Modular app with RequireJS</title> <script data-main="scripts/main" src="scripts/libs/require.js"></script> </head> <body> <h3