v-react-pivottable/node_modules/react-draggable/webpack.config.js
2024-12-16 20:19:32 -06:00

49 lines
1.1 KiB
JavaScript

var webpack = require('webpack');
module.exports = {
entry: './index.js',
output: {
filename: './dist/react-draggable.js',
sourceMapFilename: './dist/react-draggable.js.map',
devtoolModuleFilenameTemplate: '../[resource-path]',
library: 'ReactDraggable',
libraryTarget: 'umd'
},
externals: {
'react': {
'commonjs': 'react',
'commonjs2': 'react',
'amd': 'react',
// React dep should be available as window.React, not window.react
'root': 'React'
},
'react-dom': {
'commonjs': 'react-dom',
'commonjs2': 'react-dom',
'amd': 'react-dom',
'root': 'ReactDOM'
}
},
module: {
rules: [
{
test: /\.(?:js|es).?$/,
loader: 'babel-loader?cacheDirectory',
exclude: /(node_modules)/
}
]
},
resolve: {
extensions: ['.js']
},
plugins: [
new webpack.EnvironmentPlugin({
// Default values
DRAGGABLE_DEBUG: false,
NODE_ENV: 'production'
}),
// Scope hoisting
new webpack.optimize.ModuleConcatenationPlugin(),
]
};