An open API service indexing awesome lists of open source software.

https://github.com/patrickjs/angular2-webpack

Webpack helpers for Angular 2 via @AngularClass
https://github.com/patrickjs/angular2-webpack

Last synced: 9 months ago
JSON representation

Webpack helpers for Angular 2 via @AngularClass

Awesome Lists containing this project

README

          

# Angular 2 Webpack

```es6
var path = require('path');
var ng2webpack = require('angular2-webpack');

var srcPath = path.join(__dirname + 'src');

module.exports = {
module: {
preLoaders: [
ng2webpack.loaders()
]
},
plugins: [
ng2webpack.plugins(srcPath)
]
}
```