UNPKG
lingoe
Version:
latest (1.0.0)
1.0.0
Word search algorithms
github.com/zyion/lingoe
zyion/lingoe
lingoe
/
webpack.config.js
14 lines
(11 loc)
•
259 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const
path
=
require
(
'path'
);
module
.exports = { entry:
'./index.js'
, mode:
'production'
, target:
'web'
,
output
: { library:
'Lingoe'
,
path
:
path
.resolve(__dirname,
'dist'
), filename:
'lingoe.js'
} };