forked from jmerle/competitive-companion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.ts
109 lines (102 loc) · 2.64 KB
/
webpack.config.ts
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
import * as path from 'path';
import * as CopyWebpackPlugin from 'copy-webpack-plugin';
import * as TerserPlugin from 'terser-webpack-plugin';
import * as webpack from 'webpack';
function transformManifest(content: Buffer): string {
const manifest = JSON.parse(content.toString());
const packageData = require('./package.json');
manifest.name = packageData.productName;
manifest.description = packageData.description;
manifest.version = packageData.version;
manifest.author = packageData.author;
// eslint-disable-next-line @typescript-eslint/naming-convention
manifest.homepage_url = packageData.repository;
return JSON.stringify(manifest, null, 2);
}
const config: webpack.Configuration = {
entry: {
background: path.resolve(__dirname, 'src/background.ts'),
content: path.resolve(__dirname, 'src/content.ts'),
options: path.resolve(__dirname, 'src/options.ts'),
},
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'build/js'),
},
resolve: {
extensions: ['.ts', '.js'],
},
devtool: false,
optimization: {
minimizer: [
new TerserPlugin({
terserOptions: {
// eslint-disable-next-line @typescript-eslint/naming-convention
keep_classnames: true,
},
}) as any,
],
splitChunks: {
chunks: 'all',
name: 'common',
},
},
performance: {
hints: false,
},
module: {
rules: [
{
test: /\.tsx?$/,
loader: 'ts-loader',
},
{
test: /\.worker\.min\.js$/,
loader: 'worker-loader',
options: {
inline: 'no-fallback',
},
},
{
test: /\.js$/,
loader: 'string-replace-loader',
options: {
multiple: [
{
search: /new Function\(/g,
replace: 'new Error(',
},
{
search: 'eval("require")(getWorkerSrc())',
replace: 'null',
},
],
},
},
],
},
plugins: [
new CopyWebpackPlugin({
patterns: [
{
from: path.resolve(__dirname, 'static/manifest.json'),
to: path.resolve(__dirname, 'build'),
transform: transformManifest,
},
{
from: path.resolve(__dirname, 'icons'),
to: path.resolve(__dirname, 'build/icons'),
},
{
from: path.resolve(__dirname, 'src/options.html'),
to: path.resolve(__dirname, 'build'),
},
{
from: path.resolve(__dirname, 'LICENSE'),
to: path.resolve(__dirname, 'build'),
},
],
}) as any,
],
};
export default config;