blob: 11b9069d132507f400d14eb8d674877513c270ad (
plain) (
blame)
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
|
'use strict';
var path = require('path');
var webpack = require('webpack');
var noErrorsPlugin = webpack.NoErrorsPlugin;
var dedupePlugin = webpack.optimize.DedupePlugin;
var config
= { cache: true
, target: 'node'
, entry: { index: './entry' }
, externals: { 'glob': 'commonjs glob'
, 'loader-utils': 'commonjs loader-utils'
}
, output: { path: __dirname
, filename: '[name].js'
, libraryTarget: 'commonjs2'
}
, plugins: [ new noErrorsPlugin()
, new dedupePlugin()
]
, resolve: { modulesDirectories: [ 'build' ] }
}
;
module.exports = config;
|