UNPKG

221 BJavaScriptView Raw
1'use strict'
2
3/**
4 * Electron specific configurations
5 */
6module.exports = () => ({
7 target: 'electron-renderer',
8 output: {
9 // https://github.com/webpack/webpack/issues/1114
10 libraryTarget: 'commonjs2',
11 },
12})