forked from Zilliqa/zilliqa-js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebpack.config.js
89 lines (85 loc) · 2.37 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
82
83
84
85
86
87
88
89
// Copyright (c) 2018 Zilliqa
// This source code is being disclosed to you solely for the purpose of your participation in
// testing Zilliqa. You may view, compile and run the code for that purpose and pursuant to
// the protocols and algorithms that are programmed into, and intended by, the code. You may
// not do anything else with the code without express permission from Zilliqa Research Pte. Ltd.,
// including modifying or publishing the code (or any part of it), and developing or forming
// another public or private blockchain network. This source code is provided ‘as is’ and no
// warranties are given as to title or non-infringement, merchantability or fitness for purpose
// and, to the extent permitted by law, all liability for your use of the code is disclaimed.
// Base webpack configuration - to be used in ALL environments.
/* eslint import/no-extraneous-dependencies: ["error", { devDependencies: true }] */
const path = require('path');
const webpack = require('webpack');
const UglifyJs = require('uglifyjs-webpack-plugin');
const baseConfig = {
entry: {
zilliqa: [
'whatwg-fetch',
'./src/index.ts'
],
},
mode: 'production',
module: {
rules: [
{
test: /\.ts$/,
use: {
loader: 'babel-loader',
options: {
babelrc: true,
cacheDirectory: true,
},
},
},
],
},
devtool: 'source-map',
resolve: {
extensions: ['.ts', '.js'],
},
};
const clientConfig = {
...baseConfig,
optimization: {
minimizer: [
new UglifyJs({
uglifyOptions: {
compress: true,
mangle: true,
toplevel: false,
output: {
beautify: false,
comments: false,
},
},
include: /zilliqa\.js$/,
parallel: true,
sourceMap: true,
}),
],
},
output: {
libraryTarget: 'umd',
library: 'zilliqa.js',
filename: '[name].browser.js',
path: path.join(__dirname, 'dist'),
},
}
const serverConfig = {
...baseConfig,
mode: 'development',
target: 'node',
plugins: [
new webpack.ProvidePlugin({
fetch: ['node-fetch-polyfill', 'default'],
}),
],
output: {
filename: '[name].server.js',
library: 'zilliqa.js',
libraryTarget: 'commonjs2',
path: path.join(__dirname, 'dist'),
}
}
module.exports = [baseConfig, serverConfig];