forked from GetStream/stream-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
37 lines (36 loc) · 935 Bytes
/
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
var path = require("path");
var webpack = require("webpack");
module.exports = {
context: __dirname + "/src",
entry: {
stream: "./getstream.js"
},
output: {
path: path.join(__dirname, "dist", "js"),
publicPath: "dist/",
filename: "getstream.js",
chunkFilename: "[chunkhash].js",
library: "stream",
libraryTarget: "umd"
},
node: {
console: false,
Buffer: false,
crypto: 'empty',
fs: 'empty',
net: 'empty',
tls: 'empty',
url: 'empty'
},
resolve: {
alias: {
'request': 'xmlhttp-request'
}
},
module: {
loaders: [
{ test: /\.js$/, exclude: /node_modules/, loader: "babel-loader"}
]
},
plugins: [new webpack.NormalModuleReplacementPlugin(/(jsonwebtoken|http-signature|batch_operations|qs)/, path.join(__dirname, "src", "/missing.js"))]
};