I have below in configuration for require
require.config({
    baseUrl: "",
    waitSeconds: 0,
    // alias libraries paths
    paths: {
        'application-configuration': 'Scripts/App/application-configuration',
        'sessionService': 'Scripts/App/Services/ sessionServices',
        'ajaxService': 'Scripts/App/Services/ajaxServices',
        'alertsService': 'Scripts/App/Services/alertsServices',
The list is huge. These are unnamed modules. I need to minify and bundle-up in one single request.
The suggestion mentioned here says to strictly use the named modules. Is there a way for unnamed modules/scenario like above?
Note: I understand its a good idea to name your modules, but the files are large in number I want to avoid naming all of them at this point.