-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathwebpack.config.js
81 lines (70 loc) · 1.77 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
const path = require('path');
const BASE_PATH = path.resolve(__dirname);
const nodeModules = {};
require('fs')
.readdirSync(path.resolve(__dirname, 'node_modules'))
.filter((x) => {
return ['.bin'].indexOf(x) === -1;
})
.forEach((mod) => {
nodeModules[mod] = 'commonjs2 ' + mod;
});
const config = {
name: 'fastmq',
target: 'node',
mode: 'production',
context: path.join(BASE_PATH, 'src'),
entry: {
Client: './Client.js',
Server: './Server.js',
Message: './Message.js',
Response: './Response.js',
},
output: {
path: path.join(BASE_PATH, 'lib'),
filename: '[name].js',
libraryTarget: 'commonjs2',
},
resolve: {
modules: [BASE_PATH, path.join(BASE_PATH, 'node_modules')],
extensions: ['.js'],
},
externals: [nodeModules],
module: {
rules: [
{
test: /\.js?$/,
loader: 'babel-loader',
exclude: [path.resolve(__dirname, '../node_modules')],
options: {
// https://github.com/babel/babel-loader#options
cacheDirectory: true,
// https://babeljs.io/docs/usage/options/
babelrc: true,
},
},
],
},
optimization: {
minimize: false,
},
node: {
console: false,
global: false,
process: false,
Buffer: false,
__filename: false,
__dirname: false,
},
// devtool: 'source-map',
cache: true,
stats: {
colors: true,
reasons: false,
version: true,
timings: true,
chunks: false,
chunkModules: false,
},
};
module.exports = config;