bitwarden-desktop/webpack.main.js

71 lines
1.8 KiB
JavaScript
Raw Normal View History

2018-01-23 19:59:01 +01:00
const path = require('path');
const { merge } = require('webpack-merge');
2018-01-23 19:59:01 +01:00
const CopyWebpackPlugin = require('copy-webpack-plugin');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
2018-01-23 19:59:01 +01:00
const nodeExternals = require('webpack-node-externals');
const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin');
2018-01-23 19:59:01 +01:00
const common = {
module: {
rules: [
{
test: /\.ts$/,
enforce: 'pre',
2018-09-12 19:12:44 +02:00
loader: 'tslint-loader',
2018-01-23 19:59:01 +01:00
},
{
test: /\.tsx?$/,
use: 'ts-loader',
2018-09-12 19:12:44 +02:00
exclude: /node_modules\/(?!(@bitwarden)\/).*/,
2018-01-23 19:59:01 +01:00
},
2018-09-12 19:12:44 +02:00
],
2018-01-23 19:59:01 +01:00
},
plugins: [],
resolve: {
extensions: ['.tsx', '.ts', '.js'],
plugins: [new TsconfigPathsPlugin({ configFile: './tsconfig.json' })]
2018-01-23 19:59:01 +01:00
},
output: {
filename: '[name].js',
2018-09-12 19:12:44 +02:00
path: path.resolve(__dirname, 'build'),
devtoolModuleFilenameTemplate: '[absolute-resource-path]',
2018-09-12 19:12:44 +02:00
},
devtool: 'cheap-source-map'
2018-01-23 19:59:01 +01:00
};
const main = {
2018-09-12 19:12:44 +02:00
mode: 'production',
2018-01-23 19:59:01 +01:00
target: 'electron-main',
node: {
__dirname: false,
2018-09-12 19:12:44 +02:00
__filename: false,
2018-01-23 19:59:01 +01:00
},
entry: {
2020-12-29 20:53:29 +01:00
'main': './src/entry.ts',
2018-01-23 19:59:01 +01:00
},
2018-09-14 21:55:55 +02:00
optimization: {
minimize: false,
},
2018-01-23 19:59:01 +01:00
module: {
rules: [
{
test: /\.node$/,
2018-09-12 19:12:44 +02:00
loader: 'node-loader',
2018-01-23 19:59:01 +01:00
},
2018-09-12 19:12:44 +02:00
],
2018-01-23 19:59:01 +01:00
},
plugins: [
new CleanWebpackPlugin(),
new CopyWebpackPlugin({
patterns: [
'./src/package.json',
{ from: './src/images', to: 'images' },
{ from: './src/locales', to: 'locales' },
]
}),
2018-01-23 19:59:01 +01:00
],
2018-09-12 19:12:44 +02:00
externals: [nodeExternals()],
2018-01-23 19:59:01 +01:00
};
module.exports = merge(common, main);