-
Notifications
You must be signed in to change notification settings - Fork 4
/
webpack.config.js
52 lines (49 loc) · 1.94 KB
/
webpack.config.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
const path = require('path');
module.exports = {
entry: {
main: './src/index.js',
Base64ImageExample: ['babel-polyfill', './examples/Base64ImageExample.js'],
ControlsExample: ['babel-polyfill', './examples/ControlsExample.js'],
CyclicPickExample: ['babel-polyfill', './examples/CyclicPickExample.js'],
KmlGroundOverlayExample: ['babel-polyfill', './examples/KmlGroundOverlayExample.js'],
LayerOrderExample: ['babel-polyfill', './examples/LayerOrderExample.js'],
ModelExample: ['babel-polyfill', './examples/ModelExample.js'],
OrbitsExample: ['babel-polyfill', './examples/OrbitsExample.js'],
PlanetsExample: ['babel-polyfill', './examples/PlanetsExample.js'],
SciHubProductsExample: ['babel-polyfill', './examples/SciHubProductsExample.js'],
SwathConeExample: ['babel-polyfill', './examples/SwathConeExample.js'],
TexturedSurfacePolygonExample: ['babel-polyfill', './examples/TexturedSurfacePolygonExample.js'],
AcquisitionPlansExample: ['babel-polyfill', './examples/AcquisitionPlansExample.js'],
},
devtool: 'source-map',
output: {
filename: '[name].js',
path: path.resolve(__dirname, 'dist'),
libraryTarget: 'umd',
umdNamedDefine: true
},
module: {
rules: [
{test: /\.css$/, use: ['style-loader','css-loader']},
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: ["@babel/preset-env"]
}
}
},
{
test: /\.worker\.js$/,
use: {
loader: 'worker-loader',
options: {
publicPath: '/WebWorldWind-X/',
},
},
},
]
}
};