1
0
Fork 0
docsearch/webpack.config.jsdelivr.babel.js

16 lines
315 B
JavaScript

export default {
entry: './index.js',
output: {
path: './dist/',
filename: 'documentationsearch.js',
library: 'documentationSearch',
libraryTarget: 'umd'
},
module: {
loaders: [{
test: /\.js$/, exclude: /node_modules/, loader: 'babel'
}]
},
externals: [],
plugins: []
};