Skip to content

Instantly share code, notes, and snippets.

@hugodias
Created June 1, 2018 22:56
Show Gist options
  • Save hugodias/0494f378d75af5279541d828dd3a3b01 to your computer and use it in GitHub Desktop.
Save hugodias/0494f378d75af5279541d828dd3a3b01 to your computer and use it in GitHub Desktop.
var path = require('path');
module.exports = {
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'build'),
filename: 'index.js',
libraryTarget: 'commonjs2'
},
module: {
rules: [
{
test: /\.js$/,
include: path.resolve(__dirname, 'src'),
exclude: /(node_modules|bower_components|build)/,
use: {
loader: 'babel-loader',
options: {
presets: ['env']
}
}
}
]
},
externals: {
'react': 'commonjs react'
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment