mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-10-31 07:57:39 +03:00 
			
		
		
		
	* chore(deps): update dependency webpack to v5 * Add path * changes * Add path to extension * Fix things * Fix that Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
		
			
				
	
	
		
			78 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import * as path from 'path';
 | |
| import * as webpack from 'webpack';
 | |
| import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin';
 | |
| 
 | |
| module.exports = (env: { production?: boolean } = {}) => ({
 | |
|   mode: env.production ? 'production' : 'development',
 | |
|   entry: {
 | |
|     app: ['./src/index'],
 | |
|   },
 | |
|   output: {
 | |
|     library: 'ReduxDevTools',
 | |
|     libraryExport: 'default',
 | |
|     libraryTarget: 'umd',
 | |
|     path: path.resolve(__dirname, 'umd'),
 | |
|     filename: env.production
 | |
|       ? 'redux-devtools-app.min.js'
 | |
|       : 'redux-devtools-app.js',
 | |
|   },
 | |
|   module: {
 | |
|     rules: [
 | |
|       {
 | |
|         test: /\.(js|ts)x?$/,
 | |
|         loader: 'babel-loader',
 | |
|         exclude: /node_modules/,
 | |
|       },
 | |
|       {
 | |
|         test: /\.html$/,
 | |
|         loader: 'html-loader',
 | |
|       },
 | |
|       {
 | |
|         test: /\.css$/,
 | |
|         use: [{ loader: 'style-loader' }, { loader: 'css-loader' }],
 | |
|       },
 | |
|       {
 | |
|         test: /\.(png|gif|jpg)$/,
 | |
|         loader: 'url-loader',
 | |
|         options: { limit: '25000' },
 | |
|       },
 | |
|       {
 | |
|         test: /\.(ttf|eot|svg|woff|woff2)$/,
 | |
|         loader: 'url-loader',
 | |
|       },
 | |
|     ],
 | |
|   },
 | |
|   resolve: {
 | |
|     extensions: ['.js', '.jsx', '.ts', '.tsx'],
 | |
|     fallback: {
 | |
|       path: require.resolve('path-browserify'),
 | |
|     },
 | |
|   },
 | |
|   plugins: [
 | |
|     new webpack.DefinePlugin({
 | |
|       'process.env': {
 | |
|         PLATFORM: JSON.stringify('web'),
 | |
|       },
 | |
|     }),
 | |
|     new ForkTsCheckerWebpackPlugin({
 | |
|       typescript: {
 | |
|         configFile: 'tsconfig.json',
 | |
|       },
 | |
|     }),
 | |
|   ],
 | |
|   externals: {
 | |
|     react: {
 | |
|       root: 'React',
 | |
|       commonjs2: 'react',
 | |
|       commonjs: 'react',
 | |
|       amd: 'react',
 | |
|     },
 | |
|     'react-dom': {
 | |
|       root: 'ReactDOM',
 | |
|       commonjs2: 'react-dom',
 | |
|       commonjs: 'react-dom',
 | |
|       amd: 'react-dom',
 | |
|     },
 | |
|   },
 | |
| });
 |