strong-tie/inbound-calls
0
1'use strict'2 3const path = require('node:path')4 5module.exports = {6 entry: { success: './src/index.js', failPlugin: './src/fail-plugin-version.js' },7 target: 'node',8 output: {9 path: path.resolve(__dirname, 'dist'),10 filename: '[name].js',11 library: {12 type: 'commonjs2'13 }14 }15}16 