Files
react-native-web/example/webpack.config.js
Nicolas Gallagher cb039d075f Reorganize modules
2015-06-14 23:02:55 -07:00

20 lines
314 B
JavaScript

module.exports = {
entry: {
example: './example.js'
},
module: {
loaders: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel-loader',
query: { cacheDirectory: true }
}
]
},
output: {
filename: 'example.js',
path: '../dist'
}
};