Skip to content

Instantly share code, notes, and snippets.

@Hotell
Created May 21, 2016 13:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hotell/95186ebe1b4f00267a6ce18f40ac8d3a to your computer and use it in GitHub Desktop.
Save Hotell/95186ebe1b4f00267a6ce18f40ac8d3a to your computer and use it in GitHub Desktop.
barrels conifg for Angular CLi + system JS
/***********************************************************************************************
* Everything underneath this line is managed by the CLI.
**********************************************************************************************/
const barrels: string[] = [
// Angular specific barrels.
'@angular/core',
'@angular/common',
'@angular/compiler',
'@angular/http',
'@angular/router',
'@angular/platform-browser',
'@angular/platform-browser-dynamic',
// Thirdparty barrels.
'rxjs',
// App specific barrels.
'app',
'app/shared',
// custom reducers HERE!
'app/reducers',
'app/components',
'app/containers',
'app/components/event-list',
'app/components/member-list',
'app/containers/event-list-container',
/** @cli-barrel */
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment