@@ -4,6 +4,9 @@ const CopyWebpackPlugin = require("copy-webpack-plugin");
4
4
5
5
const isProd = process . argv . includes ( "production" ) ;
6
6
7
+ /**
8
+ * @type {import('webpack').Configuration }
9
+ */
7
10
module . exports = {
8
11
entry : {
9
12
index : "./src/index.ts" ,
@@ -21,23 +24,21 @@ module.exports = {
21
24
} ,
22
25
} ,
23
26
plugins : [
24
- new CopyWebpackPlugin ( [
25
- { from : "public" , to : "." } ,
26
- { from : "../header-text.js" , to : "." } ,
27
- ] ) ,
27
+ new CopyWebpackPlugin ( {
28
+ patterns : [
29
+ { from : "public" , to : "." } ,
30
+ { from : "../header-text.js" , to : "." } ,
31
+ ] ,
32
+ } ) ,
28
33
] ,
29
34
devtool : isProd ? "source-map" : "inline-source-map" ,
30
35
optimization : {
31
36
minimize : true ,
32
37
minimizer : [
33
38
new TerserPlugin ( {
34
39
extractComments : true ,
35
- cache : true ,
36
40
parallel : true ,
37
- sourceMap : true , // Must be set to true if using source-maps in production
38
41
terserOptions : {
39
- // https://github.com/webpack-contrib/terser-webpack-plugin#terseroptions
40
- extractComments : "all" ,
41
42
compress : {
42
43
drop_console : false ,
43
44
} ,
@@ -55,13 +56,6 @@ module.exports = {
55
56
test : / \. c s s $ / ,
56
57
use : [ "style-loader" , "css-loader" ] ,
57
58
} ,
58
- {
59
- test : / \. j s $ / ,
60
- exclude : / n o d e _ m o d u l e s / ,
61
- use : {
62
- loader : "babel-loader" ,
63
- } ,
64
- } ,
65
59
{
66
60
test : / \. s v g $ / ,
67
61
use : [
0 commit comments