-
Notifications
You must be signed in to change notification settings - Fork 215
/
webpack-common.config.js
104 lines (96 loc) · 2.72 KB
/
webpack-common.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
const path = require('path');
const { DefinePlugin } = require('webpack');
const {
getNextVersion,
packageLoaderRules: { aliasMap: alias, tsSrcPackages },
} = require('./scripts/webpack');
const libraryName = 'checkoutKit';
const coreSrcPath = path.join(__dirname, 'packages/core/src');
const hostedFormV2SrcPath = path.join(__dirname, 'packages/hosted-form-v2/src');
const libraryEntries = {
'checkout-sdk': path.join(coreSrcPath, 'bundles', 'checkout-sdk.ts'),
'checkout-button': path.join(coreSrcPath, 'bundles', 'checkout-button.ts'),
'embedded-checkout': path.join(coreSrcPath, 'bundles', 'embedded-checkout.ts'),
extension: path.join(coreSrcPath, 'bundles', 'extension.ts'),
'hosted-form': path.join(coreSrcPath, 'bundles', 'hosted-form.ts'),
'internal-mappers': path.join(coreSrcPath, 'bundles', 'internal-mappers.ts'),
'hosted-form-v2-iframe-content': path.join(
hostedFormV2SrcPath,
'bundles',
'hosted-form-v2-iframe-content.ts',
),
'hosted-form-v2-iframe-host': path.join(
hostedFormV2SrcPath,
'bundles',
'hosted-form-v2-iframe-host.ts',
),
};
async function getBaseConfig() {
return {
stats: {
errorDetails: true,
logging: 'verbose',
},
devtool: 'source-map',
mode: 'production',
resolve: {
extensions: ['.ts', '.js'],
alias,
},
module: {
rules: [
{
parser: {
amd: false,
},
},
{
test: /\.[tj]s$/,
enforce: 'pre',
loader: require.resolve('source-map-loader'),
},
...tsSrcPackages,
],
},
plugins: [
new DefinePlugin({
LIBRARY_VERSION: JSON.stringify(await getNextVersion()),
}),
],
};
}
const babelEnvPreset = [
'@babel/preset-env',
{
corejs: 3,
targets: ['defaults', 'ie 11'],
useBuiltIns: 'usage',
},
];
const babelLoaderRules = [
{
test: /\.[tj]s$/,
loader: 'babel-loader',
include: coreSrcPath,
options: {
presets: [babelEnvPreset],
},
},
{
test: /\.js$/,
loader: 'babel-loader',
include: path.join(__dirname, 'node_modules'),
exclude: [/\/node_modules\/core-js\//, /\/node_modules\/webpack\//],
options: {
presets: [babelEnvPreset],
sourceType: 'unambiguous',
},
},
];
module.exports = {
babelLoaderRules,
getBaseConfig,
libraryEntries,
libraryName,
coreSrcPath,
};