From efd680761aadfbcc621c76a2cc57382eef2f5639 Mon Sep 17 00:00:00 2001 From: Daniel Tschinder <231804+danez@users.noreply.github.com> Date: Sun, 17 Apr 2022 14:05:40 +0000 Subject: [PATCH] feat: Minify generated code and don't print comments --- .babelrc.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.babelrc.js b/.babelrc.js index ff9155fcb3..b10eab046b 100644 --- a/.babelrc.js +++ b/.babelrc.js @@ -8,6 +8,8 @@ const modules = output == null ? false : output; const targets = env === 'test' ? { node: 'current' } : undefined; const options = { + comments: false, + minified: true, assumptions: { ignoreToPrimitiveHint: true, iterableIsArray: true,