49 lines
1.0 KiB
JavaScript
49 lines
1.0 KiB
JavaScript
'use strict';
|
|
const webpack = require('webpack');
|
|
const path = require('path');
|
|
const ClearDistPlugin = require('./plugins/clearDist');
|
|
const config = require('./config');
|
|
|
|
const electronConfig = {
|
|
target: 'electron-main',
|
|
mode: 'development',
|
|
entry: {
|
|
main: path.join(config.path.electron, 'main/index.ts'),
|
|
preload: path.join(config.path.electron, 'preload/index.ts')
|
|
},
|
|
module: {
|
|
rules: [
|
|
config.typescriptRule,
|
|
// HTML as string
|
|
{
|
|
test: /\.html$/,
|
|
use: 'raw-loader',
|
|
}
|
|
]
|
|
},
|
|
resolve: {
|
|
extensions: ['.ts', '.js', '.json'],
|
|
modules: config.resolve.modules
|
|
},
|
|
output: {
|
|
filename: '[name].js',
|
|
path: path.resolve(config.path.output, 'electron-js')
|
|
},
|
|
plugins: [
|
|
new ClearDistPlugin(),
|
|
new webpack.DefinePlugin({
|
|
'process.env.NODE_ENV': JSON.stringify('development')
|
|
})
|
|
],
|
|
externals: {
|
|
'node-hid': 'commonjs node-hid'
|
|
},
|
|
node: {
|
|
__dirname: false,
|
|
__filename: false
|
|
},
|
|
devtool: 'eval'
|
|
};
|
|
|
|
module.exports = electronConfig;
|