-
-
Notifications
You must be signed in to change notification settings - Fork 103
/
webpack.config.js
70 lines (69 loc) · 1.89 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
const { NODE_ENV } = process.env;
const webpack = require("webpack");
const CopyPlugin = require("copy-webpack-plugin");
module.exports = {
mode: NODE_ENV === "production" ? "production" : "development",
devtool: "source-map",
watchOptions: {
ignored: /node_modules/
},
entry: {
index: `${__dirname}/src/ui/index.tsx`
},
output: {
path: `${__dirname}/lib/ui`,
filename: "[name].bundle.js"
},
module: {
rules: [
{
test: /\.tsx?$/,
use: [
{
loader: "ts-loader",
options: {
configFile: "tsconfig.webpack.json"
}
}
]
},
{
test: /\.css$/,
use: ["style-loader", "css-loader"]
}
]
},
resolve: {
extensions: [".ts", ".tsx", ".js", ".json"]
},
plugins: [
new CopyPlugin({
patterns: [
{
// globby can't glob Windows-style(contain '\') path
from: `${__dirname}/src/ui/**/*.{html,svg}`.replace(/\\/g, '/'),
to: `${__dirname}/lib/ui`,
context: `${__dirname}/src/ui`
}
]
}),
new webpack.ProvidePlugin({
Buffer: ["buffer", "Buffer"]
}),
new webpack.ProvidePlugin({
process: "process/browser"
})
],
optimization: {
splitChunks: {
cacheGroups: {
vendors: {
test: /node_modules/,
name: "vendors",
chunks: "all",
enforce: true
}
}
}
}
};