-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
64 lines (63 loc) · 1.67 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
53
54
55
56
57
58
59
60
61
62
63
64
var path = require('path');
var webpack = require('webpack');
module.exports = {
context: path.join(__dirname, 'client'),
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-dev.js')
// TODO: switch between -dev and non-dev on production vs. not
}
},
node: {
console: true,
net: 'empty',
tls: 'empty'
},
module: {
loaders: [{
test: /\.json$/,
loader: 'json-loader'
}, {
test: path.join(__dirname, 'client'),
exclude: /node_modules/,
loader: 'babel',
query: {
presets: ['es2015'],
plugins: ['transform-flow-strip-types']
}
}, {
test: /\.js$/,
include: path.resolve('node_modules/mapbox-gl-shaders/index.js'),
loader: 'transform/cacheable?brfs'
}, {
test: /\.css$/,
loader: 'style-loader!css-loader'
}, {
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
loader: 'url?limit=10000&mimetype=image/svg+xml'
}],
// 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()
]
}