UNPKG

469 BJavaScriptView Raw
1module.exports = {
2 entry: './src/index.jsx',
3 output: {
4 path : __dirname + '/dist',
5 libraryTarget: 'umd',
6 library : 'ReactToolbar',
7 filename : 'react-toolbar.min.js'
8 },
9 module: {
10 loaders: require('./loaders.config')
11 },
12 externals: {
13 'react': 'React'
14 },
15 resolve: {
16 // Allow to omit extensions when requiring these files
17 extensions: ['', '.js', '.jsx']
18 }
19}
\No newline at end of file