forked from eosnetworkfoundation/mandel-eosjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.debug.js
34 lines (33 loc) · 893 Bytes
/
webpack.debug.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
const path = require('path');
module.exports = {
entry: {
eosjs_api: './src/eosjs-api.ts',
eosjs_jsonrpc: './src/rpc-web.ts',
eosjs_jssig: './src/eosjs-jssig.ts',
eosjs_numeric: './src/eosjs-numeric.ts',
},
devtool: 'inline-source-map',
mode: 'development',
module: {
rules: [
{
test: /\.tsx?$/,
use: {
loader: 'ts-loader',
options: {
configFile: 'tsconfig.web.json'
}
},
exclude: /node_modules/,
}
]
},
resolve: {
extensions: ['.tsx', '.ts', '.js']
},
output: {
filename: x => x.chunk.name.replace('_', '-') + '-debug.js',
library: '[name]',
path: path.resolve(__dirname, 'dist-web', 'debug'),
}
};