Build more compact code with Babel

This commit is contained in:
Jaifroid 2025-04-01 20:38:08 +01:00
parent f810badb07
commit 90ee106407

View File

@ -1,5 +1,4 @@
const config = { const config = {
presets: [ presets: [
[ [
'@babel/preset-env', '@babel/preset-env',
@ -21,8 +20,8 @@ const config = {
} }
] ]
], ],
exclude: ['node_modules/**'] exclude: ['node_modules/**'],
compact: true // Force compacting for large files
}; };
export default config; export default config;