With Angular2
RC5 and angular-cli 1.0.0-beta.11-webpack.8
you can achieve this with css imports.
Just install font awesome:
npm install font-awesome --save
and then import font-awesome in one of your configured style files:
@import '../node_modules/font-awesome/css/font-awesome.css';
(style files are configured in angular-cli.json
)