react-input-atuosugest
Version:
An atuo sugestion search box
24 lines • 783 B
JavaScript
var path = require('path');
module.exports = {
entry: './src/index.js',
output: {
path: path.resolve(__dirname, 'build'),
filename: 'index.js',
libraryTarget: 'commonjs2' // THIS IS THE MOST IMPORTANT LINE! :mindblow: I wasted more than 2 days until realize this was the line most important in all this guide.
},
module: {
loaders: [
{
test: /\.js?$/,
exclude: /(node_modules|bower_components|build)/,
loaders: [
'babel-loader',
'babel-loader?presets[]=react,presets[]=es2015,presets[]=stage-0'
]
}
]
},
externals: {
'react': 'commonjs react' // this line is just to use the React dependency of our parent-testing-project instead of using our own React.
}
};