profiles: {
    base: any[];
    development: any[];
    karma: any[];
    production: any[];
}

Some predefined profiles that specified a list of partials in arrays.

These profiles are available:

  • base - the base for everything
  • production - partials that are for production build only
  • development - partials that are for development only
  • karma - partials that are for running karma tests only

Type declaration

  • base: any[]

    The base feature that include all the partials for a webapp. These partials are included: baseOptions, entry, subappChunks, output, resolve, resolveLoader, babel, extractStyle, fonts, images, statsWriter, isomorphic, node

  • development: any[]

    Additional partials that are specific for a development build

  • karma: any[]

    Additional partials that are specific for a build to run Karma tests

  • production: any[]

    Additional partials that are used for a production build