-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.cjs
75 lines (58 loc) · 1.75 KB
/
webpack.config.cjs
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
const HtmlWebpackPlugin = require('html-webpack-plugin');
const path = require('node:path');
module.exports = (env, argv) => {
const mode = argv.mode === 'development' ? argv.mode : 'production'
const isDev = mode === 'development';
const libraryName = 'viewportAction';
const plugins = [];
const entry = {
viewportAction: './src/index.ts'
};
if (isDev) {
const pages = ['index', 'basic'];
pages.forEach((page) => {
plugins.push(new HtmlWebpackPlugin({
filename: `${page}.html`,
template: `./examples/${page}.html`
}));
entry[page] = `./examples/scripts/${page}.js`;
});
plugins.concat(plugins);
}
return {
mode: mode,
devtool: 'source-map',
devServer: {
static: {
directory: path.join(__dirname, 'examples')
},
compress: true,
port: 9000
},
entry: entry,
output: {
path: path.join(__dirname, 'dist'),
filename: isDev ? '[name].js' : '[name].min.js',
library: libraryName,
libraryExport: 'default',
libraryTarget: 'umd',
chunkLoadingGlobal: `${libraryName}_webpackChunkwebpack`
},
module: {
rules: [{
test: /\.ts(x?)$/,
exclude: /(node_modules)/,
include: path.resolve(__dirname, 'src'),
loader: 'ts-loader'
}, {
test: /.js$/,
enforce: 'pre',
use: ['source-map-loader']
}]
},
resolve: {
extensions: ['.ts', '.js']
},
plugins: plugins
};
}