This repository has been archived by the owner on Jun 14, 2024. It is now read-only.
generated from kernel-addons/PluginTemplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwebpack.config.js
113 lines (110 loc) · 4.15 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
105
106
107
108
109
110
111
112
113
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const {builtinModules} = require("module");
const {DefinePlugin} = require("webpack");
const pkg = require("./package.json");
const path = require("path");
module.exports = args => {
const {mode = "renderer", minify = false} = args;
/**@type {import("webpack").Configuration} */
const config = {
devtool: !!minify ? false : "eval-source-map",
mode: !!minify ? "production" : "development",
entry: `./src/${mode}/index`,
output: {
path: path.resolve(__dirname, "dist"),
library: {
type: mode === "renderer" ? "module" : "commonjs"
},
filename: `${mode}.js`,
chunkFilename: "[name].js"
},
experiments: {
outputModule: true
},
node: {
__dirname: false
},
externals: {
// Automatically add all dependencies as externals.
...Object.fromEntries(
Object.keys(pkg.dependencies).map(e => [e, e])
.concat(builtinModules.flatMap(mod => [[mod, mod], [`node:${mod}`, mod]]))
),
"original-fs": "original-fs",
electron: "electron"
},
module: {
rules: [
{
test: /\.(m|c)?(j|t)sx?$/i,
exclude: /(node_modules|bower_components)/,
use: {
loader: "swc-loader",
options: {
sourceMaps: true,
minify: !!minify,
jsc: {
parser: {
tsx: true,
syntax: "typescript",
decorators: true
},
target: "es2022"
},
}
}
},
{
test: /\.s[ac]ss$/i,
use: [
MiniCssExtractPlugin.loader,
{
loader: "css-loader",
options: {
importLoaders: true,
// modules: { // Disable this if you don't want the css classNames to be transformed.
// localIdentName: "holy-[name]-[local]"
// }
}
},
"sass-loader"
]
}
]
},
resolve: {
extensions: [
".jsx",
".js",
".mjs",
".cjs",
".svg",
".ts",
".tsx",
".scss",
".css",
],
alias: {
"@powercord": path.resolve(__dirname, "./src/renderer/powercord"),
"@data": path.resolve(__dirname, "./src/renderer/data"),
"@modules": path.resolve(__dirname, "./src/renderer/modules"),
"@ui": path.resolve(__dirname, "./src/renderer/ui"),
"@node": path.resolve(__dirname, "./src/renderer/node"),
"@common": path.resolve(__dirname, "./src/common"),
"@classes": path.resolve(__dirname, "./src/renderer/classes"),
"@flux": path.resolve(__dirname, "./src/renderer/flux"),
"@decorators": path.resolve(__dirname, "./src/renderer/decorators"),
}
},
plugins: [
// new CircularDependencyPlugin(),
new MiniCssExtractPlugin({
filename: "style.css"
}),
new DefinePlugin({
"__NODE_ENV__": JSON.stringify(minify ? "PRODUCTION" : "DEVELOPMENT")
})
]
};
return config;
}