UNPKG

dayjs-plugin-utc

Version:
24 lines (21 loc) 422 B
const path = require('path') const config = { entry: './src/index.js', output: { path: path.resolve(__dirname, 'dist'), filename: 'dayjs-plugin-utc.min.js', libraryTarget: 'umd', globalObject: 'this', library: 'dayjsPluginUTC' }, module: { rules: [ { test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader' } ] } } module.exports = config