forked from iTowns/itowns
-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
69 lines (65 loc) · 2.18 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
65
66
67
68
69
var path = require('path');
var webpack = require('webpack');
var commonConfig = require('./webpack-common.config.js');
var definePlugin = new webpack.DefinePlugin({
__DEBUG__: JSON.stringify(process.env.NODE_ENV === 'development'),
});
var providePlugin = new webpack.ProvidePlugin({
TextDecoder: [path.resolve(__dirname, 'src/utils/polyfill'), 'TextDecoder'],
TextEncoder: [path.resolve(__dirname, 'src/utils/polyfill'), 'TextEncoder'],
});
module.exports = {
entry: {
itowns: ['babel-polyfill', 'url-polyfill', 'whatwg-fetch', path.resolve(__dirname, 'src/MainBundle.js')],
debug: [path.resolve(__dirname, 'utils/debug/Main.js')],
},
devtool: 'source-map',
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].js',
library: '[name]',
libraryTarget: 'umd',
umdNamedDefine: true,
},
plugins: [
definePlugin,
providePlugin,
new webpack.optimize.CommonsChunkPlugin({ name: 'itowns' }),
],
module: {
rules: [
{
test: /\.js$/,
enforce: 'pre',
include: [
path.resolve(__dirname, 'src'),
path.resolve(__dirname, 'test'),
path.resolve(__dirname, 'utils'),
],
loader: 'eslint-loader',
},
{
test: /\.js$/,
include: [
path.resolve(__dirname, 'src'),
path.resolve(__dirname, 'test'),
path.resolve(__dirname, 'utils'),
],
loader: 'babel-loader',
// Please consider modifying .babelrc too
// .babelrc is used for transpiling src/ into lib/ in the prepublish
// phase, see package.json
options: {
presets: [['es2015', { modules: false } ]],
plugins: ['transform-runtime'],
babelrc: false,
},
},
commonConfig.glslLoader,
commonConfig.jsonLoader,
],
},
devServer: {
publicPath: '/dist/',
},
};