mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-05 05:55:46 +00:00
19 lines
463 B
JavaScript
19 lines
463 B
JavaScript
module.exports = {
|
|
entry: './src/index.jsx',
|
|
output: {
|
|
path : __dirname + '/dist',
|
|
libraryTarget: 'umd',
|
|
library : 'ReactButton',
|
|
filename : 'react-button.js'
|
|
},
|
|
module: {
|
|
loaders: require('./loaders.config')
|
|
},
|
|
externals: {
|
|
'react': 'React'
|
|
},
|
|
resolve: {
|
|
// Allow to omit extensions when requiring these files
|
|
extensions: ['', '.js', '.jsx']
|
|
}
|
|
} |