Created
May 21, 2016 13:25
-
-
Save Hotell/95186ebe1b4f00267a6ce18f40ac8d3a to your computer and use it in GitHub Desktop.
barrels conifg for Angular CLi + system JS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*********************************************************************************************** | |
* 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