freeCodeCamp/packages/learn/webpack-frame-runner.js

37 lines
896 B
JavaScript
Raw Normal View History

2018-04-06 14:51:52 +01:00
const path = require('path');
2018-09-12 11:41:27 +03:00
module.exports = (env = {}) => {
const __DEV__ = env.production !== true;
return {
mode: __DEV__ ? 'development' : 'production',
entry: './src/client/frame-runner.js',
devtool: __DEV__ ? 'inline-source-map' : 'source-map',
output: {
filename: 'frame-runner.js',
path: path.join(__dirname, './static/js')
},
stats: {
// Display bailout reasons
optimizationBailout: true
},
module: {
rules: [{
test: /\.jsx?$/,
include: [ path.join(__dirname, 'src/client/') ],
use: {
loader: 'babel-loader',
options: {
babelrc: false,
presets: [
[ '@babel/preset-env', { modules: false } ]
],
plugins: [
'@babel/plugin-transform-runtime'
]
}
2018-04-06 14:51:52 +01:00
}
2018-09-12 11:41:27 +03:00
}]
}
};
2018-04-06 14:51:52 +01:00
};