mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-13 05:06:50 +03:00
100 lines
2.5 KiB
JavaScript
100 lines
2.5 KiB
JavaScript
import path from 'path';
|
|
import webpack from 'webpack';
|
|
import CopyPlugin from 'copy-webpack-plugin';
|
|
import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
|
|
|
|
const extpath = path.join(__dirname, '../src/browser/extension/');
|
|
const mock = `${extpath}chromeAPIMock`;
|
|
|
|
const baseConfig = (params) => ({
|
|
// devtool: 'source-map',
|
|
mode: params.mode,
|
|
entry: params.input || {
|
|
background: [mock, `${extpath}background/index`],
|
|
options: [mock, `${extpath}options/index`],
|
|
window: [`${extpath}window/index`],
|
|
remote: [`${extpath}window/remote`],
|
|
devpanel: [mock, `${extpath}devpanel/index`],
|
|
devtools: [`${extpath}devtools/index`],
|
|
content: [mock, `${extpath}inject/contentScript`],
|
|
pagewrap: [`${extpath}inject/pageScriptWrap`],
|
|
'redux-devtools-extension': [
|
|
`${extpath}inject/index`,
|
|
`${extpath}inject/deprecatedWarn`,
|
|
],
|
|
inject: [`${extpath}inject/index`, `${extpath}inject/deprecatedWarn`],
|
|
...params.inputExtra,
|
|
},
|
|
output: {
|
|
filename: '[name].bundle.js',
|
|
chunkFilename: '[id].chunk.js',
|
|
...params.output,
|
|
},
|
|
plugins: [
|
|
new webpack.DefinePlugin(params.globals),
|
|
...(params.plugins
|
|
? params.plugins
|
|
: [
|
|
new ForkTsCheckerWebpackPlugin({
|
|
typescript: {
|
|
configFile: 'tsconfig.json',
|
|
},
|
|
}),
|
|
]),
|
|
].concat(
|
|
params.copy
|
|
? new CopyPlugin({
|
|
patterns: [
|
|
{
|
|
from: params.manifestJsonPath,
|
|
to: path.join(params.output.path, 'manifest.json'),
|
|
},
|
|
{
|
|
from: path.join(__dirname, '../src/assets/'),
|
|
to: params.output.path,
|
|
},
|
|
],
|
|
})
|
|
: []
|
|
),
|
|
optimization: {
|
|
minimize: false,
|
|
},
|
|
performance: {
|
|
hints: false,
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
app: path.join(__dirname, '../src/app'),
|
|
tmp: path.join(__dirname, '../build/tmp'),
|
|
},
|
|
extensions: ['.js', '.jsx', '.ts', '.tsx'],
|
|
fallback: {
|
|
path: require.resolve('path-browserify'),
|
|
},
|
|
},
|
|
module: {
|
|
rules: [
|
|
...(params.loaders
|
|
? params.loaders
|
|
: [
|
|
{
|
|
test: /\.(js|ts)x?$/,
|
|
use: 'babel-loader',
|
|
exclude: /(node_modules|tmp\/page\.bundle)/,
|
|
},
|
|
]),
|
|
{
|
|
test: /\.css?$/,
|
|
use: ['style-loader', 'css-loader'],
|
|
},
|
|
{
|
|
test: /\.pug$/,
|
|
use: ['file-loader?name=[name].html', 'pug-html-loader'],
|
|
},
|
|
],
|
|
},
|
|
});
|
|
|
|
export default baseConfig;
|