-
Notifications
You must be signed in to change notification settings - Fork 14
/
webpack.config.js
104 lines (101 loc) · 2.66 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
const path = require("path");
const glob = require("glob");
const webpack = require("webpack");
const WebpackAssetsManifest = require("webpack-assets-manifest");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const TerserPlugin = require("terser-webpack-plugin");
const entries = {};
glob.sync("app/javascript/packs/*.{ts,tsx}").forEach((filePath) => {
const name = path.basename(filePath, path.extname(filePath));
entries[name] = path.resolve(__dirname, filePath);
});
module.exports = (_env, argv) => {
const isProd = argv.mode === "production";
const devTool = isProd ? {} : { devtool: "source-map" };
return [
{
...devTool,
mode: isProd ? "production" : "development",
entry: entries,
output: {
path: path.resolve(__dirname, "public/packs"),
publicPath: "/packs/",
filename: isProd ? "[name]-[contenthash].js" : "[name].js",
},
optimization: {
splitChunks: {
name: "vendor",
chunks: "initial",
hidePathInfo: isProd,
},
minimize: isProd,
minimizer: [
new TerserPlugin({
terserOptions: {
keep_classnames: false,
compress: {
ecma: "2017",
},
},
}),
],
},
resolve: {
extensions: [".js", ".ts", ".tsx", ".css", ".scss"],
fallback: { util: require.resolve("util/") },
},
module: {
rules: [
{
test: /\.scss$|\.sass$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: "css-loader",
options: {
url: false,
},
},
"sass-loader",
],
},
{
test: /\.css$/,
use: [
MiniCssExtractPlugin.loader,
{
loader: "css-loader",
options: {
url: false,
},
},
],
},
{
test: /\.tsx?$/,
exclude: /node_module/,
use: {
loader: "ts-loader",
options: {
instance: "main",
},
},
},
],
},
plugins: [
new WebpackAssetsManifest({
publicPath: true,
output: "manifest.json",
}),
new webpack.ProvidePlugin({
$: "jquery",
jQuery: "jquery",
}),
new MiniCssExtractPlugin({
filename: isProd ? "[name]-[contenthash].css" : "[name].css",
}),
],
},
];
};