-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.cjs
110 lines (108 loc) · 3.68 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
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
105
106
107
108
109
110
const webpack = require('webpack');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const path = require('path');
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
const NODE_ENV = JSON.stringify(
process.env.NODE_ENV ? process.env.NODE_ENV : 'development'
);
const devtool = NODE_ENV == '"development"' ? 'source-map' : undefined;
module.exports = {
devtool,
optimization: {
minimize: false,
},
entry: {
// Global
ReSubstitute: ['./src/ReSubstitute.ts'],
},
output: {
path: path.join(__dirname, '/dist'),
filename: '[name].js',
libraryTarget: 'commonjs2',
clean: true,
},
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(process.env.NODE_ENV),
},
}),
new BundleAnalyzerPlugin({
analyzerMode: 'static',
reportFilename: '../analyzer/lib.html',
openAnalyzer: false,
}),
new CopyWebpackPlugin({
patterns: [
{
from: './README.md',
to: './README.md',
},
{
from: './package.json',
to: './package.json',
transform(content, path) {
// Transform the content of package.json
const packageJson = JSON.parse(content);
return JSON.stringify(
{
...packageJson,
version: process.env.RELEASE_VERSION
? process.env.RELEASE_VERSION.replace(
'v',
''
)
: packageJson.version,
},
null,
2
);
},
},
{
from: './package.json',
to: './package.github.json',
transform(content, path) {
// Transform the content of package.json for GitHub Packages
const packageJson = JSON.parse(content);
return JSON.stringify(
{
...packageJson,
name: '@fdmediagroep/resubstitute',
version: process.env.RELEASE_VERSION
? process.env.RELEASE_VERSION.replace(
'v',
''
)
: packageJson.version,
},
null,
2
);
},
},
],
}),
],
module: {
strictExportPresence: true,
rules: [
{ parser: { requireEnsure: false } },
// all files with a `.ts` or `.tsx` extension will be handled by a TypeScript loader
{
test: /\.tsx?$/,
use: [
{
loader: 'ts-loader',
options: {
configFile: 'tsconfig.json',
},
},
],
},
],
},
};