-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
webpack.config.js
127 lines (119 loc) · 3.56 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
const path = require('path');
const ForkTsCheckWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const VueLoaderPlugin = require('vue-loader/lib/plugin');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const TsConfigPathsPlugin = require('tsconfig-paths-webpack-plugin');
const autoprefixer = require('autoprefixer');
const TerserJsPlugin = require('terser-webpack-plugin')
module.exports = (env, argv) => {
const production = (env && env.production) || (argv && argv.mode == 'production') ? true : false;
console.log('Environment:', (production ? 'Production' : 'Development') + '!')
return {
mode: production ? 'production' : 'development',
entry: {
'bs-ext-background': path.resolve(__dirname, 'src', 'background', 'background.ts'),
'bs-ext-main': path.resolve(__dirname, 'src', 'main', 'main.ts'),
'bs-ext-auth': path.resolve(__dirname, 'src', 'auth', 'main.ts'),
'bs-ext-popup': path.resolve(__dirname, 'src', 'popup', 'main.ts')
},
output: {
path: path.resolve(__dirname, production ? 'build-prod' : 'build'),
filename: '[name].js',
},
module: {
rules: [
{
test: /\.vue$/,
loader: 'vue-loader'
},
{
test: /\.[jt]s$/,
loader: 'ts-loader',
options: { transpileOnly: true }
},
{
test: /\.scss$/,
use: [
!production ? 'vue-style-loader' : MiniCssExtractPlugin.loader,
{ loader: 'css-loader', options: { importLoaders: 1 } },
{
loader: 'postcss-loader',
options: {
plugins: () => [ autoprefixer() ]
}
},
'sass-loader'
]
},
{
test: /\.css$/,
use: [
!production ? 'vue-style-loader' : MiniCssExtractPlugin.loader,
'css-loader'
]
},
{
test: /\.(ttf|eot|svg|woff2?)(\?[a-z0-9=&.]+)?$/,
loader: 'file-loader'
}
]
},
resolve: {
modules: ['node_modules'],
extensions: ['.vue', '.ts', '.js', '.json', '.html', '.scss', '.css'],
plugins: [new TsConfigPathsPlugin()]
},
devtool: production ? '' : 'inline-source-map',
optimization: {
splitChunks: {
chunks: 'all'
},
minimizer: [ new TerserJsPlugin({ terserOptions: { mangle: { reserved: [
'Buffer',
'BigInteger',
'Point',
'ECPubKey',
'ECKey',
'sha512_asm',
'asm',
'ECPair',
'HDNode'
] } } }) ]
},
plugins: [
new CleanWebpackPlugin(),
new VueLoaderPlugin(),
// new ForkTsCheckWebpackPlugin(),
new MiniCssExtractPlugin({
filename: '[name].css'
}),
new HtmlWebpackPlugin({
chunks: ['bs-ext-main'],
template: 'src/main/index.html',
filename: 'main.html'
}),
new HtmlWebpackPlugin({
chunks: ['bs-ext-auth'],
template: 'src/auth/index.html',
filename: 'auth.html'
}),
new HtmlWebpackPlugin({
chunks: ['bs-ext-popup'],
template: 'src/popup/index.html',
filename: 'popup.html'
}),
new HtmlWebpackPlugin({
chunks: ['bs-ext-background'],
template: 'src/background/index.html',
filename: 'background.html'
}),
new CopyWebpackPlugin([
{ from: 'src/*', flatten: true },
{ from: 'src/assets', to: 'assets' }
])
]
}
}