-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
85 lines (78 loc) · 2.11 KB
/
index.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
const webpack = require("webpack");
const merge = require("webpack-merge");
const TerserPlugin = require("terser-webpack-plugin");
const FriendlyErrorsWebpackPlugin = require("friendly-errors-webpack-plugin");
const path = require("path");
require("dotenv").config();
const baseConfig = {
mode: process.env.NODE_ENV === "production" ? "production" : "development",
resolve: {
extensions: ["*", ".js", ".json", ".ts"],
symlinks: false,
modules: [path.resolve("./", "node_modules")],
},
plugins: [
new FriendlyErrorsWebpackPlugin({
clearConsole: true,
}),
],
performance: {
hints: false,
},
output: {
path: path.resolve("dist"),
library: "[name]",
libraryTarget: "umd",
// See https://github.com/webpack/webpack/issues/6522
globalObject: "typeof self !== 'undefined' ? self : this",
},
module: {
rules: [
{
test: /\.[jt]s$/,
use: "ts-loader",
exclude: /node_modules/,
},
],
},
optimization: {
minimizer: [
new TerserPlugin({
cache: true,
parallel: true,
sourceMap: true,
}),
],
},
};
const developmentConfig = {
config: {
devtool: "source-map",
mode: "development",
output: {
filename: "[name].js",
},
},
};
const productionConfig = {
config: {
mode: "production",
output: {
filename: "[name].min.js",
},
performance: {
hints: false,
},
},
env: "production",
};
module.exports = (extraConfig) =>
[productionConfig, developmentConfig].map((environmentConfig) => {
const config = merge({}, baseConfig, environmentConfig.config, extraConfig);
config.plugins = config.plugins.concat([
new webpack.DefinePlugin({
"process.env.NODE_ENV": JSON.stringify(environmentConfig.env || "development"),
}),
]);
return config;
});