UNPKG
edda-util-js
Version:
latest (0.0.1)
0.0.1
edda-util-js
/
webpack.config.js
11 lines
•
279 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
const
path
=
require
(
'path'
)
module
.exports = { mode :
'development'
, entry:
'./src/index.js'
,
output
: {
path
:
path
.resolve(__dirname,
'dist'
), filename:
"edda-utils.js"
, library:
"edda"
, libraryTarget:
'umd'
, } }