I am configuring RequireJS like so:
require.config({
paths: {
jquery: 'jquery-1.8.3.min',
knockout: 'knockout-2.2.0',
komapping: 'knockout.mapping-latest',
token: 'jquery.tokeninput'
},
shim: {
jQuery: {
exports: 'jQuery'
}
}
});
When I look at the actual requests with Fiddler, I see it is looking for jquery.js and nothing works properly. If I add a file jquery.js to my project, it works.
Why is it not using the version-specific library as I have specified? The reason I want the specific version is because I am using NuGet to manage my packages (Visual Studio .Net obviously, and this is an ASP.Net MVC application) and I want to avoid needing to remember to copy the file every time JQuery is updated.