forked from iotaledger/mam.client.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
executable file
·43 lines (40 loc) · 922 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
/* global __dirname, require, module*/
const webpack = require('webpack')
const path = require('path')
const output = 'lib/'
const libraryName = 'mam.'
const entry = __dirname + '/src/node.js'
const outputFile = libraryName + 'client.js'
const target = 'node'
const rules = [
{
test: /(\.jsx|\.js)$/,
loader: 'babel-loader',
exclude: /node_modules/
}
]
const config = {
entry,
output: {
path: __dirname + '/' + output,
filename: outputFile,
library: libraryName,
libraryTarget: 'umd',
umdNamedDefine: true
},
module: {
rules
},
resolve: {
modules: [path.resolve('./node_modules'), path.resolve('./src')],
extensions: ['.json', '.js']
},
target,
node: {
fs: 'empty',
child_process: 'empty',
path: 'empty'
}
}
console.log(config.output)
module.exports = config