mirror of
https://github.com/Kong/insomnia
synced 2024-11-07 22:30:15 +00:00
26 lines
474 B
JavaScript
26 lines
474 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
entry: { index: './src/index.js' },
|
|
target: 'node',
|
|
mode: 'production',
|
|
devtool: 'source-map',
|
|
output: {
|
|
path: path.resolve(__dirname, 'dist'),
|
|
filename: '[name].js',
|
|
library: 'openapi2kong',
|
|
libraryTarget: 'commonjs2',
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.js$/,
|
|
exclude: /node_modules/,
|
|
use: {
|
|
loader: 'babel-loader',
|
|
},
|
|
},
|
|
],
|
|
},
|
|
};
|