-
Notifications
You must be signed in to change notification settings - Fork 20
/
webpack.config.ts
85 lines (76 loc) · 1.95 KB
/
webpack.config.ts
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
import webpack, { Configuration } from 'webpack';
import TerserPlugin from 'terser-webpack-plugin';
import packageJson from './package.json';
import path from 'path';
const terserPlugin = new TerserPlugin({ extractComments: false });
const commonOptimization = {
minimize: true,
minimizer: [terserPlugin]
};
const banner = `
malaysia-postcodes v${
packageJson.version
} (https://github.com/AsyrafHussin/npm-malaysia-postcodes)
Copyright 2020-${new Date().getFullYear()} Asyraf Hussin
Licensed under ISC (https://github.com/AsyrafHussin/npm-malaysia-postcodes/blob/main/LICENSE)
`;
const commonConfig: Configuration = {
entry: './src/index.ts',
module: {
rules: [
{
test: /\.ts$/,
exclude: /node_modules|__tests__/,
use: 'ts-loader'
}
]
},
resolve: {
extensions: ['.ts', '.js']
},
plugins: [
new webpack.BannerPlugin({
banner: banner,
raw: false,
entryOnly: true
})
]
};
const umdConfig: Configuration = {
...commonConfig,
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'malaysia-postcodes.min.js',
library: 'malaysiaPostcodes',
libraryTarget: 'umd',
umdNamedDefine: true,
globalObject: 'this'
},
mode: 'production',
optimization: commonOptimization
};
const umdDevConfig: Configuration = {
...commonConfig,
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'malaysia-postcodes.js',
library: 'malaysiaPostcodes',
libraryTarget: 'umd',
umdNamedDefine: true,
globalObject: 'this'
},
mode: 'development',
optimization: { ...commonOptimization, minimize: false }
};
const commonJsConfig: Configuration = {
...commonConfig,
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'index.js',
libraryTarget: 'commonjs2'
},
mode: 'production',
optimization: commonOptimization
};
const config: Configuration[] = [umdConfig, umdDevConfig, commonJsConfig];
export default config;