mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-10-30 23:47:35 +03:00 
			
		
		
		
	* Use rollup for d3tooltip * Use rollup for map2tree * Set moduleResolution * Use rollup for d3-state-visualizer * Use rollup for react-base16-styling * Use rollup for react-dock * Use rollup for react-json-tree * Use rollup for redux-devtools * Use rollup for redux-devtools-intrument * Use rollup for redux-devtools-chart-monitor * Update export * Use rollup for redux-devtools-dock-monitor * Use rollup for redux-devtools-inspector-monitor * Fix inspector demo * Fix invalid eslint config * Use rollup for inspector-monitor-test-tab * Use rollup for inspector-monitor-trace-tab * Use rollup for redux-devtools-log-monitor * Use rollup for redux-devtools-remote * Use rollup in redux-devtools-rtk-query-monitor * Use rollup for redux-devtools-serialize * Fix redux-devtools examples * Use rollup for redux-devtools-slider-monitor * Fix slider examples * Use rollup for redux-devtools-ui * Use rollup for redux-devtools-utils * Use rollup for redux-devtools-extension * Use rollup for redux-devtools-app * Fix Webpack app build * Fix extension build * Turn on minimization * Update CLI
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import typescript from 'rollup-plugin-typescript2';
 | |
| import babel from '@rollup/plugin-babel';
 | |
| 
 | |
| const config = [
 | |
|   {
 | |
|     input: 'src/index.tsx',
 | |
|     output: [
 | |
|       {
 | |
|         file: 'dist/redux-devtools-app.cjs.js',
 | |
|         format: 'cjs',
 | |
|       },
 | |
|       {
 | |
|         file: 'dist/redux-devtools-app.esm.js',
 | |
|         format: 'esm',
 | |
|       },
 | |
|     ],
 | |
|     plugins: [
 | |
|       typescript(),
 | |
|       babel({
 | |
|         babelHelpers: 'runtime',
 | |
|         extensions: ['.ts', '.tsx'],
 | |
|         plugins: ['@babel/plugin-transform-runtime'],
 | |
|       }),
 | |
|     ],
 | |
|     external: [
 | |
|       /@babel\/runtime/,
 | |
|       'react',
 | |
|       'react-redux',
 | |
|       'redux',
 | |
|       'localforage',
 | |
|       /redux-persist/,
 | |
|       '@redux-devtools/ui',
 | |
|       'socketcluster-client',
 | |
|       'jsan',
 | |
|       /react-icons/,
 | |
|       'styled-components',
 | |
|       '@redux-devtools/slider-monitor',
 | |
|       'prop-types',
 | |
|       /lodash/,
 | |
|       '@redux-devtools/core',
 | |
|       '@redux-devtools/log-monitor',
 | |
|       '@redux-devtools/rtk-query-monitor',
 | |
|       '@redux-devtools/chart-monitor',
 | |
|       '@redux-devtools/inspector-monitor',
 | |
|       '@redux-devtools/inspector-monitor-trace-tab',
 | |
|       '@redux-devtools/inspector-monitor-test-tab',
 | |
|       'javascript-stringify',
 | |
|       'jsondiffpatch',
 | |
|       'd3-state-visualizer',
 | |
|     ],
 | |
|   },
 | |
| ];
 | |
| 
 | |
| export default config;
 |