forked from linnovate/mean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
38 lines (35 loc) · 947 Bytes
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
'use strict';
var path = require('path');
//var ngAnnotatePlugin = require('ng-annotate-webpack-plugin');
module.exports = {
context: __dirname,
entry: './app.js',
output: {
path: path.join(__dirname, './bundle'),
publicPath: '/',
filename: 'app.js'
},
module: {
loaders: [
{test: /\.css$/, loader: 'style-loader!css-loader'},
{
test: /\.js$/,
exclude: /(node_modules|bower_components|lib)/,
loader: 'babel?presets[]=es2015&presets[]=stage-1'
},
{
test: /(.*)\.(eot|svg|ttf|woff|woff2)$/,
loader: 'url-loader'
}
]
},
resolve: {
modulesDirectories: ['bower_components', 'node_modules']
},
plugins: [
/* new ngAnnotatePlugin({
add: true,
// other ng-annotate options here
})*/
]
};