hyper/webpack.config.js
Benjamin Staneck f0e9507caa Restore lost commits from v2 branch (#2275)
* Fix decorated config with default colors (#2241)

Fix #2240

* Update xterm.js to 2.9.2 (#2236)

* Enable VS Codes type checking and quick fixes for Javascript files

* https://code.visualstudio.com/docs/languages/javascript#_type-checking-and-quick-fixes-for-javascript-files

* Ignore the dist dir as well
2017-09-25 15:26:04 +02:00

53 lines
1.1 KiB
JavaScript

const path = require('path');
const webpack = require('webpack');
const Copy = require('copy-webpack-plugin');
const nodeEnv = process.env.NODE_ENV || 'development';
const isProd = nodeEnv === 'production';
module.exports = {
resolve: {
extensions: ['.js', '.jsx']
},
devtool: isProd ? 'hidden-source-map' : 'cheap-module-source-map',
entry: './lib/index.js',
output: {
path: path.join(__dirname, 'app', 'renderer'),
filename: 'bundle.js'
},
module: {
rules: [
{
test: /\.(js|jsx)$/,
exclude: /node_modules/,
loader: 'babel-loader'
},
{
test: /\.json/,
loader: 'json-loader'
},
// for xterm.js
{
test: /\.css$/,
loader: 'style-loader!css-loader'
}
]
},
plugins: [
new webpack.IgnorePlugin(/.*\.js.map$/i),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(nodeEnv)
}
}),
new Copy([
{
from: './assets',
to: './assets'
}
])
],
target: 'electron'
};