-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
55 lines (53 loc) · 1.37 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
const HtmlWebpackPlugin = require('html-webpack-plugin');
const path = require('path');
const webpack = require('webpack');
module.exports = {
entry: path.join(__dirname, 'examples/metamask/main.ts'),
output: {
path: path.join(__dirname, 'examples/dist/'),
filename: 'main.js'
},
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/
}
]
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
fallback: {
crypto: require.resolve('crypto-browserify'),
stream: require.resolve('stream-browserify'),
assert: require.resolve('assert/'),
http: require.resolve('stream-http'),
os: require.resolve('os-browserify/browser'),
https: require.resolve('https-browserify')
}
},
plugins: [new HtmlWebpackPlugin({
template: path.join(__dirname, 'examples/metamask/index.html'),
filename: path.join(__dirname, 'examples/dist/index.html')
}),
new webpack.ProvidePlugin({
process: 'process/browser'
}),
new webpack.ProvidePlugin({
Buffer: ['buffer', 'Buffer']
})
],
devServer: {
static: {
directory: path.join(__dirname, 'examples/dist')
},
watchFiles: ['src/**/*.ts', 'examples/metamask/**/*'],
port: 4200,
liveReload: true,
client: {
overlay: { errors: true, warnings: false },
progress: true
}
}
};