-
-
Notifications
You must be signed in to change notification settings - Fork 139
/
webpack.config.js
63 lines (62 loc) · 1.54 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
const path = require('path');
const webpack = require('webpack');
const TerserPlugin = require('terser-webpack-plugin');
const packageJSON = require('./package.json');
module.exports = (env, argv) => {
const isDevelopment = argv.mode === 'development';
return {
entry: './src/index.ts',
mode: isDevelopment ? 'development' : 'production',
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
],
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
fallback: {
fs: false,
},
},
output: {
filename: 'wppconnect-wa.js',
path: path.resolve(__dirname, 'dist'),
library: {
name: 'WPP',
type: 'global',
},
},
...(!isDevelopment ? { optimization: {
minimize: true,
minimizer: [
new TerserPlugin({
terserOptions: {
format: {
comments:(astNode, comment) => /wa-js v/.test(comment.value),
},
},
extractComments: true,
}),
],
} } : {})
,
plugins: [
new webpack.ProvidePlugin({
Buffer: ['buffer', 'Buffer'],
}),
new webpack.DefinePlugin({
__VERSION__: `'${packageJSON.version}'`,
__SUPPORTED_WHATSAPP_WEB__: `'${packageJSON.engines['whatsapp-web']}'`,
}),
new webpack.BannerPlugin({
banner: `/*! wppconnect-team/wa-js v${packageJSON.version} */\n`,
entryOnly: true,
raw: true
})
],
};
};