-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathwebpack.config.js
87 lines (84 loc) · 2.21 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
/* eslint-env node */
const path = require("path");
const webpack = require("webpack");
const webpackMerge = require("webpack-merge");
const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
// We only use Webpack to compile an ES5 version of textoverlay that
// exports itself to the `Textoverlay` global.
const defaultConfig = {
devtool: "source-map",
context: path.join(__dirname, "src"),
entry: {
textoverlay: "./textoverlay.ts",
},
output: {
path: path.join(__dirname, "dist"),
filename: "textoverlay.es5.js",
libraryTarget: "umd",
// `library` determines the name of the global variable
library: "Textoverlay",
libraryExport: "default"
},
resolve: {
extensions: [".ts"]
},
module: {
rules: [
{
test: /\.ts$/,
loaders: [
"babel-loader",
{
loader: "ts-loader",
options: {
transpileOnly: true,
compilerOptions: {
// Declarations are already produced when building the non-ES5 version.
"declaration": false,
}
}
}],
exclude: /node_modules/
},
],
}
};
module.exports = function(env, argv) {
switch (argv.mode) {
case "production":
return webpackMerge(defaultConfig, {
output: {
filename: "textoverlay.es5.min.js",
},
plugins: [
new webpack.DefinePlugin({
"process.env.NODE_ENV": JSON.stringify("production"),
}),
],
optimization: {
minimize: true,
minimizer: [
new UglifyJsPlugin({
sourceMap: true,
uglifyOptions: {
beautify: false,
mangle: {
// We do not use Function.prototype.name.
keep_fnames: false,
},
compress: {
// We do not use Function.length.
keep_fargs: false,
// We do not use Function.prototype.name.
keep_fnames: false,
},
comments: false,
}
})
]
},
});
default:
return defaultConfig;
}
};