github-desktop/webpack.common.js

45 lines
1 KiB
JavaScript
Raw Normal View History

2016-05-24 19:12:06 +00:00
'use strict'
const path = require('path')
const HtmlWebpackPlugin = require('html-webpack-plugin')
2016-05-24 19:12:06 +00:00
module.exports = {
entry: [
'./src/index'
],
output: {
filename: 'bundle.js',
path: path.join(__dirname, 'build'),
libraryTarget: 'commonjs2'
},
module: {
loaders: [
{
test: /\.tsx?$/,
loaders: ['babel', 'ts'],
include: path.join(__dirname, 'src')
},
{
test: /\.(jpe?g|png|gif|ico)$/,
loaders: ["file?name=[path][name].[ext]"]
2016-05-24 19:12:06 +00:00
}
]
},
resolve: {
extensions: ['', '.js', '.ts', '.tsx'],
packageMains: ['webpack', 'browser', 'web', 'browserify', ['jam', 'main'], 'main']
},
target: 'electron',
plugins: [new HtmlWebpackPlugin({ 'template': 'static/index.html' })],
2016-05-24 19:12:06 +00:00
externals: function (context, request, callback) {
try {
// Attempt to resolve the module via Node
require.resolve(request)
callback(null, request)
} catch (e) {
// Node couldn't find it, so it must be user-aliased
callback()
}
}
}