mirror of
https://github.com/responsively-org/responsively-app
synced 2024-11-14 16:37:27 +00:00
47 lines
915 B
JavaScript
47 lines
915 B
JavaScript
/**
|
|
* Base webpack config used across other specific configs
|
|
*/
|
|
|
|
import path from 'path';
|
|
import webpack from 'webpack';
|
|
import {dependencies} from '../package.json';
|
|
|
|
export default {
|
|
externals: [...Object.keys(dependencies || {})],
|
|
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.jsx?$/,
|
|
exclude: /node_modules/,
|
|
use: {
|
|
loader: 'babel-loader',
|
|
options: {
|
|
cacheDirectory: true,
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
|
|
output: {
|
|
path: path.join(__dirname, '..', 'app'),
|
|
// https://github.com/webpack/webpack/issues/1114
|
|
libraryTarget: 'commonjs2',
|
|
},
|
|
|
|
/**
|
|
* Determine the array of extensions that should be used to resolve modules.
|
|
*/
|
|
resolve: {
|
|
extensions: ['.js', '.jsx', '.json'],
|
|
},
|
|
|
|
plugins: [
|
|
new webpack.EnvironmentPlugin({
|
|
NODE_ENV: 'production',
|
|
}),
|
|
|
|
new webpack.NamedModulesPlugin(),
|
|
],
|
|
};
|