redux-devtools/packages/react-json-tree/webpack.config.umd.ts

36 lines
764 B
TypeScript
Raw Normal View History

import * as path from 'path';
module.exports = (env: { production?: boolean } = {}) => ({
mode: env.production ? 'production' : 'development',
2019-01-10 21:51:14 +03:00
entry: {
app: ['./src/index'],
2019-01-10 21:51:14 +03:00
},
output: {
library: 'ReactJsonTree',
libraryExport: 'default',
2019-01-10 21:51:14 +03:00
libraryTarget: 'umd',
path: path.resolve(__dirname, 'umd'),
filename: env.production ? 'react-json-tree.min.js' : 'react-json-tree.js',
2019-01-10 21:51:14 +03:00
},
module: {
rules: [
{
test: /\.(js|ts)x?$/,
2019-01-10 21:51:14 +03:00
loader: 'babel-loader',
exclude: /node_modules/,
},
],
2019-01-10 21:51:14 +03:00
},
resolve: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
2019-01-10 21:51:14 +03:00
externals: {
react: {
root: 'React',
commonjs2: 'react',
commonjs: 'react',
amd: 'react',
},
2019-01-10 21:51:14 +03:00
},
});