UNPKG
moval
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
0.0.1
fast de duplication of different types of arrays
github.com/wushuxuan/moval
wushuxuan/moval
moval
/
_book
/
webpack.config.js
17 lines
(15 loc)
•
335 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module.exports
=
{
mode:
'development'
,
entry:
'./src/index.js'
,
output:
{
path:
__dirname
,
filename:
'./release/moval.bundle.js'
},
module:
{
rules:
[{
test:
/\.js?$/
,
exclude:
/(node_modules)/
,
loader:
'babel-loader'
}] } }