-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.config.js
59 lines (56 loc) · 1.22 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
'use strict'
const path = require('path')
const webpack = require('webpack')
var nodeExternals = require('webpack-node-externals')
var browser_config = {
mode: 'production',
entry: {
'@roshub/api': './src/index.js'
},
devtool: 'cheap-module-source-map',
output: {
library: ['RosHub'],
libraryTarget: 'var',
path: path.join(__dirname, 'dist'),
filename: 'roshub-browser.js'
},
node: {
fs: 'empty',
net: 'empty',
dns: 'empty'
},
plugins: [
new webpack.DefinePlugin({
'process.env.ENV': JSON.stringify('browser')
})
]
}
var node_config = {
target: 'node',
externals: [nodeExternals({
whitelist: ["@roshub_backend/model", "@roshub_backend/roshub-crypto", "@roshub_backend/model/dist/roshub-model.json"
],
modulesFromFile: true
})],
mode: 'development',
entry: {
'@roshub/api': './src/node-roshub.js'
},
devtool: 'cheap-module-source-map',
output: {
library: "",
libraryTarget: 'commonjs',
path: path.join(__dirname, 'dist'),
filename: 'roshub-node.js'
},
resolve: {
modules: [
'node_modules',
],
extensions: ['.ts', '.tsx', '.js', '.json'],
symlinks: true,
}
}
module.exports = [
browser_config,
node_config]