UNPKG

iput

Version:

an IP input component like windows

16 lines (14 loc) 366 B
const path = require('path'); const { merge } = require('webpack-merge'); const common = require('./webpack.common'); module.exports = merge({ mode: 'production', entry: { iput: path.resolve(__dirname, '../src/index.js') }, output: { path: path.resolve(__dirname, '../lib'), filename: '[name].js', libraryTarget: 'commonjs2' } }, common);