UNPKG
geography-apis-sdk
Version:
latest (1.0.0)
1.0.0
SDK for making requests to Geography APIs
geography-apis-sdk
/
webpack.config.js
12 lines
(11 loc)
•
289 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
const
path
=
require
(
'path'
);
module
.exports = { entry:
'./geography-apis-sdk.js'
,
output
: { filename:
'geography-apis-sdk.bundle.js'
,
path
:
path
.resolve(__dirname,
'dist'
), libraryTarget:
'umd'
, library:
'GeographyAPISDK'
, globalObject:
'this'
, }, };