48 lines
1.3 KiB
JavaScript
48 lines
1.3 KiB
JavaScript
const path = require('path');
|
|
const CopyPlugin = require('copy-webpack-plugin');
|
|
|
|
const browser = process.env.BROWSER;
|
|
const BUILD_DIR_NAME = 'dist';
|
|
const SRC_DIR_NAME = 'src';
|
|
|
|
module.exports = {
|
|
entry: {
|
|
popup: path.join(__dirname, `../${SRC_DIR_NAME}/popup.ts`),
|
|
options: path.join(__dirname, `../${SRC_DIR_NAME}/lib/options.ts`),
|
|
},
|
|
output: {
|
|
path: path.join(__dirname, `../${BUILD_DIR_NAME}`),
|
|
filename: '[name].js',
|
|
},
|
|
optimization: {
|
|
splitChunks: {
|
|
name: 'vendor',
|
|
chunks: 'initial',
|
|
},
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.tsx?$/,
|
|
use: 'ts-loader',
|
|
exclude: /node_modules/,
|
|
},
|
|
],
|
|
},
|
|
resolve: {
|
|
extensions: ['.ts', '.tsx', '.js'],
|
|
},
|
|
plugins: [
|
|
new CopyPlugin({
|
|
patterns: [
|
|
{ from: './images', to: `../${BUILD_DIR_NAME}/images`, context: 'public' },
|
|
{ from: './fonts', to: `../${BUILD_DIR_NAME}/fonts`, context: 'public' },
|
|
{ from: './css', to: `../${BUILD_DIR_NAME}/css`, context: 'public' },
|
|
{ from: './popup.html', to: `../${BUILD_DIR_NAME}/popup.html`, context: 'public' },
|
|
{ from: './options.html', to: `../${BUILD_DIR_NAME}/options.html`, context: 'public' },
|
|
{ from: `${browser}_manifest.json`, to: `../${BUILD_DIR_NAME}/manifest.json`, context: 'public' },
|
|
],
|
|
}),
|
|
],
|
|
};
|