UNPKG

react-keyboard-time-input

Version:
30 lines (28 loc) 606 B
var path = require('path'); var webpack = require('webpack'); module.exports = { devtool: 'source-map', entry: './src/TimeInput.js', output: { path: path.join(__dirname, 'dist'), filename: 'commonjs.js', library: 'TimeInput', libraryTarget: 'commonjs' }, plugins: [ new webpack.DefinePlugin({ 'process.env.NODE_ENV': JSON.stringify('production') }), new webpack.NoEmitOnErrorsPlugin() ], module: { loaders: [ { test: /\.js$/, loader: 'babel-loader', include: __dirname, exclude: /node_modules/ } ] } };