forked from AccessMap/accessmap-old-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
62 lines (61 loc) · 1.51 KB
/
webpack.config.js
File metadata and controls
62 lines (61 loc) · 1.51 KB
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
53
54
55
56
57
58
59
60
61
62
var path = require('path');
var webpack = require('webpack');
module.exports = {
context: path.join(__dirname, 'es6'),
entry: {
map: './map.js',
isochrones: './isochrones.js'
},
output: {
path: path.join(__dirname, 'public', 'build'),
filename: './[name]-bundle.js',
library: 'App'
},
resolve: {
extensions: ['', '.js'],
alias: {
webworkify: 'webworkify-webpack',
// 'mapbox-gl': path.resolve('./node_modules/mapbox-gl/dist/mapbox-gl.js')
}
},
node: {
console: true,
net: 'empty',
tls: 'empty'
},
module: {
loaders: [{
test: /\.json$/,
loader: 'json-loader'
}, {
test: path.join(__dirname, 'es6'),
exclude: /node_modules/,
loader: 'babel',
query: {
presets: ['es2015']
}
}, {
test: /\.js$/,
include: path.resolve('node_modules/mapbox-gl-shaders/index.js'),
loader: 'transform/cacheable?brfs'
}, {
test: /\.css$/,
loader: 'style-loader!css-loader'
}, {
test: require.resolve('mapbox-gl-geocoder'),
loader: 'imports?mapboxgl=mapbox-gl'
}],
postLoaders: [{
includes: [
/node_modules\/mapbox-gl-shaders/,
/node_modules\/request/
],
loader: 'transform',
query: 'brfs'
}],
noParse: /node_modules\/json-schema\/lib\/validate\.js/
},
plugins: [
new webpack.OldWatchingPlugin()
]
}