-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebpack.prod.js
56 lines (55 loc) · 1.2 KB
/
webpack.prod.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
const HtmlWebpackPlugin = require("html-webpack-plugin");
const path = require('path');
module.exports = {
entry: "./src/index.ts",
output:{
library: 'wc-chatbot',
path: __dirname + '/dist',
libraryTarget: 'umd',
// filename: '[name].min.js',
filename: (pathData) => {
return pathData.chunk.name === 'main' ? 'wc-chatbot.js' : 'wc-chatbot.[name].js';
}
// chunkFilename: "[id].js",
},
mode: "production",
devServer: {
compress: true,
open: true,
},
devtool: "source-map",
plugins: [],
experiments: {
asyncWebAssembly: true,
syncWebAssembly: true
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
},
module: {
rules: [
{
test: /\.(ts|tsx)$/,
include: __dirname + '/src',
loader: 'babel-loader',
options: {
presets: ['@babel/typescript', '@babel/preset-env'],
}
},
{
test: /\.s[ac]ss$/i,
use: [
'raw-loader',
{
loader:'sass-loader',
options: {
sassOptions:{
includePaths: [path.resolve(__dirname, 'node_modules')]
}
}
}
],
},
],
},
};