-
Notifications
You must be signed in to change notification settings - Fork 41
/
webpack.inpage.js
94 lines (84 loc) · 2.37 KB
/
webpack.inpage.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
const path = require('path');
const webpack = require('webpack');
const TerserPlugin = require('terser-webpack-plugin');
const WextManifestWebpackPlugin = require('wext-manifest-webpack-plugin');
const sourcePath = path.join(__dirname, 'source');
module.exports = {
devtool: false, // https://github.com/webpack/webpack/issues/1194#issuecomment-560382342
stats: {
all: false,
builtAt: true,
errors: true,
hash: true,
},
mode: 'production',
entry: {
inpage: path.join(sourcePath, 'scripts', 'Inpage', 'index.js'),
},
output: {
path: path.join(__dirname, 'dist'),
filename: '[name].js',
},
resolve: {
extensions: ['.js', '.jsx', '.json'],
alias: {
'@components': path.join(path.resolve(__dirname, './source/components')),
'@assets': path.join(path.resolve(__dirname, './source/assets')),
'@shared': path.join(path.resolve(__dirname, './source/shared')),
'@hooks': path.join(path.resolve(__dirname, './source/hooks')),
'@redux': path.join(path.resolve(__dirname, './source/redux')),
'@background': path.join(path.resolve(__dirname, './source/background')),
},
},
module: {
rules: [
{
type: 'javascript/auto', // prevent webpack handling json with its own loaders,
test: /manifest\.json$/,
use: {
loader: 'wext-manifest-loader',
options: {
// set to false to not use package.json version for manifest
usePackageJSONVersion: true,
},
},
exclude: /node_modules/,
},
{
test: /\.(js|ts)x?$/,
loader: 'babel-loader',
// exclude: /node_modules/,
options: {
plugins: ['@babel/plugin-proposal-export-namespace-from'],
},
},
{
test: /\.(png|jpe?g|gif|jp2|webp|svg)$/,
loader: 'file-loader',
options: {
name: '[name].[ext]',
},
},
],
},
plugins: [
// Plugin to not generate js bundle for manifest entry
new WextManifestWebpackPlugin(),
// Generate sourcemaps
new webpack.SourceMapDevToolPlugin({ filename: false }),
],
optimization: {
minimize: true,
minimizer: [
new TerserPlugin({
parallel: true,
terserOptions: {
format: {
comments: false,
},
},
extractComments: false,
}),
],
},
};