forked from linnovate/mean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
43 lines (40 loc) · 967 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
39
40
41
42
43
'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$/,
loaders: ['style', 'css?sourceMap']
}, {
test: /\.scss$/,
loaders: ['style', 'css?sourceMap', 'sass?sourceMap']
}, {
test: /\.less$/,
loaders: ['style', 'css?sourceMap', 'less?sourceMap']
}, {
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: ['node_modules']
},
plugins: [
// new ngAnnotatePlugin({
// add: true,
// // other ng-annotate options here
// })
]
}