Enable babel build caching

This commit is contained in:
Bill Thornton 2022-09-06 02:18:19 -04:00
parent 15b4842c4f
commit 073ab54aef

View file

@ -116,7 +116,11 @@ module.exports = {
test: /\.(js|jsx)$/, test: /\.(js|jsx)$/,
exclude: /node_modules[\\/](?!@uupaa[\\/]dynamic-import-polyfill|blurhash|date-fns|epubjs|flv.js|libarchive.js|marked|react-router|screenfull)/, exclude: /node_modules[\\/](?!@uupaa[\\/]dynamic-import-polyfill|blurhash|date-fns|epubjs|flv.js|libarchive.js|marked|react-router|screenfull)/,
use: [{ use: [{
loader: 'babel-loader' loader: 'babel-loader',
options: {
cacheCompression: false,
cacheDirectory: true
}
}] }]
}, },
{ {
@ -140,6 +144,8 @@ module.exports = {
use: [{ use: [{
loader: 'babel-loader', loader: 'babel-loader',
options: { options: {
cacheCompression: false,
cacheDirectory: true,
plugins: [ plugins: [
'@babel/transform-modules-umd' '@babel/transform-modules-umd'
] ]