-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathwebpack.config.docs.js
73 lines (71 loc) · 1.55 KB
/
webpack.config.docs.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
/* eslint-env node */
const path = require("path");
const webpack = require("webpack");
const webpackMerge = require("webpack-merge");
const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
module.exports = {
plugins: [
new MiniCssExtractPlugin()
],
devtool: "source-map",
devServer: {
contentBase: "docs",
},
entry: {
bundle: "./src/docs/main.ts",
},
resolve: {
extensions: [".ts", ".js", ".css"]
},
module: {
rules: [
{
test: /\.ts$/,
loaders: [
"babel-loader",
{
loader: "ts-loader",
options: {
transpileOnly: true
}
}],
exclude: /node_modules/
},
{
test: /\.css$/,
use: [
MiniCssExtractPlugin.loader,
"css-loader?importLoaders=1",
"postcss-loader",
],
},
],
},
output: {
path: path.join(__dirname, "docs"),
filename: "bundle.js",
},
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,
}
})
]
},
};