-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.config.js
48 lines (42 loc) · 1 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
let path = require('path')
let webpack = require('webpack')
let WebpackShellPlugin = require('webpack-shell-plugin')
let findNodeModules = require('find-node-modules')
module.exports = {
entry: './spankbank.ts',
mode: 'development',
module: {
rules: [
{
test: /\.tsx?$/,
use: 'ts-loader',
exclude: /node_modules/
},
]
},
resolve: {
extensions: [ '.tsx', '.ts', '.js' ],
alias: {
'@contracts': path.resolve(__dirname, findNodeModules()[0], '@spankdev/spankbank/build/contracts/'),
}
},
output: {
filename: 'spankbank.js',
path: path.resolve(__dirname, 'dist'),
library: 'spankbank',
libraryTarget: 'umd',
globalObject: 'typeof self !== \'undefined\' ? self : this',
},
plugins: [
new WebpackShellPlugin({
onBuildStart: ['npm run example-build-defs'],
}),
],
devServer: {
contentBase: path.join(__dirname),
publicPath: '/dist/',
port: 6933,
open: true,
openPage: 'example.html',
}
}