overleaf/services/web/webpack.config.js

53 lines
1.5 KiB
JavaScript
Raw Normal View History

2018-01-12 06:41:02 -05:00
const path = require('path')
module.exports = {
// Defines the "entry point(s)" for the application - i.e. the file which
2018-01-12 06:41:02 -05:00
// bootstraps the application
entry: {
'rich-text': './public/es/rich-text.js'
2018-01-12 06:41:02 -05:00
},
// Define where and how the bundle will be output to disk
// Note: webpack-dev-server does not write the bundle to disk, instead it is
// kept in memory for speed
output: {
path: path.join(__dirname, '/public/js/es'),
2018-01-12 06:41:02 -05:00
filename: '[name].js',
// Output as UMD bundle (allows main JS to import with CJS, AMD or global
// style code bundles
libraryTarget: 'umd',
// Name the exported variable from output bundle
library: ['Frontend', '[name]']
},
// TODO??
// Defines the external modules which will be stripped out when bundling for
// the main app. These modules are already loaded in the main app environment,
// so we strip them out to prevent conflicts.
2018-01-12 06:41:02 -05:00
// externals: {},
// Define how file types are handled by webpack
module: {
rules: [{
// Pass application JS files through babel-loader, compiling to ES5
test: /\.js$/, // Only compile .js files
// Only compile application files (dependencies are in ES5 already)
// include: [path.join(__dirname, './public/frontend')],
exclude: /node_modules/,
use: [{
loader: 'babel-loader',
options: {
presets: ['env'],
// Configure babel-loader to cache compiled output so that subsequent
// compile runs are much faster
cacheDirectory: true
}
}]
}]
},
// TODO
// plugins: {}
}