import * as path from 'path'; import * as webpack from 'webpack'; import * as merge from 'webpack-merge'; import { config as configBase } from '../webpack.config'; export const config: webpack.Configuration = merge(configBase, { output: { library: 'Oidc', libraryTarget: 'var', path: path.resolve(__dirname, '../../../dist') }, plugins: [] });