-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.web.js
51 lines (50 loc) · 1.51 KB
/
webpack.config.web.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
var path = require('path');
var webpack = require('webpack');
module.exports = {
entry: {
'game.web': ['./App/index.web.js'],
// 'game.ios': ['./App/index.ios.js'],
// 'game.android': ['./App/index.android.js']
},
output: {
path: __dirname + '/App/Build/Release',
publicPath: '/App/Build/Release/',
filename: '[name].bundle.js',
chunkFilename: '[id].chunk.js'
},
resolve: {
extensions: ['', '.js', '.jsx', '.json']
},
module: {
loaders: [
{
test: /\.js?$/,
loader: 'babel',
include: [path.join(__dirname + '/App'), path.join(__dirname + '/node_modules/react-native-extended-stylesheet')],
query: {
cacheDirectory: true,
plugins: [],
presets: ['react', 'es2015', 'stage-0']
}
},
{
test: /\.css$/,
include: path.join(__dirname + '/App'),
loaders: [
'raw'
]
},
{
test: /\.json$/,
include: path.join(__dirname + '/'), // Thanks cheerio :-/
loader: 'json-loader'
},
]
},
plugins: [
new webpack.IgnorePlugin(/^(react-native)$/),
new webpack.DefinePlugin({
'process.env': { NODE_ENV: JSON.stringify(process.env.NODE_ENV || 'development') }
})
]
};