-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
76 lines (71 loc) · 1.64 KB
/
webpack.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
const path = require('path');
const prodPattern = /^prod/i;
module.exports = (env, argv) => {
const isProd = prodPattern.test(argv.mode) || prodPattern.test(process.env.NODE_ENV);
const mode = isProd ? 'production' : 'development';
const clientConfig = {
mode: 'development',
devtool: 'source-map',
name: 'client',
entry: './src/index.ts',
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
],
},
target: 'web',
resolve: {
extensions: ['.ts', '.tsx', '.js'],
modules: ['src', 'node_modules'],
fallback: {
crypto: false,
},
},
output: {
publicPath: '',
iife: true,
library: {
name: '@opentdf/client',
type: 'module',
},
filename: `client-web.web.js`,
libraryTarget: 'umd',
globalObject: 'this',
umdNamedDefine: true,
path: path.resolve(__dirname, 'dist/client'),
},
};
const serverConfig = {
mode,
devtool: 'source-map',
name: 'server',
entry: './src/index.node.ts',
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/,
},
],
},
target: 'node',
resolve: {
extensions: [ '.ts', '.tsx', '.js'],
modules: ['src', 'node_modules'],
},
output: {
publicPath: '',
libraryExport: 'default',
globalObject: 'this',
libraryTarget: 'commonjs',
filename: `node.cjs.js`,
path: path.resolve(__dirname, 'dist/server'),
},
};
return [clientConfig, serverConfig];
};