-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
42 lines (38 loc) · 986 Bytes
/
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
'use strict';
const path = require('path');
const fs = require('fs');
const TerserPlugin = require('terser-webpack-plugin');
// Get the root path
const currentPath = fs.realpathSync(process.cwd());
const resolvePath = relativePath => path.resolve(currentPath, relativePath);
module.exports = {
devtool: 'source-map',
entry: {
'zendesk-react': resolvePath('src/index'),
'zendesk-react.min': resolvePath('src/index'),
},
mode: 'production',
module: {
rules: [{ test: /\.tsx?$/, exclude: /node_modules/, loader: 'babel-loader' }],
},
optimization: {
minimize: true,
minimizer: [
new TerserPlugin({
include: /\.min\.js$/,
parallel: true,
terserOptions: { sourceMap: true },
}),
],
},
output: {
path: resolvePath('dist/_bundles'),
filename: `[name].js`,
libraryTarget: 'umd',
library: 'ZendeskReact',
umdNamedDefine: true,
},
resolve: {
extensions: ['.ts', '.tsx', '.js'],
},
};