aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2021-03-30 15:06:18 +0300
committerGravatar Vitaly Takmazov2021-03-30 15:06:18 +0300
commitb4bac6106acedf660d4b8b590ee4500ff51ec7f4 (patch)
tree54a9cbd4b2f7934fc8d2c59010271c2a52c338b9 /package.json
parent44d06eb2feac6b5189c0f7e974287015813cf111 (diff)
babel: exclude es.symbol.* polyfills from the bundle
Diffstat (limited to 'package.json')
-rw-r--r--package.json8
1 files changed, 6 insertions, 2 deletions
diff --git a/package.json b/package.json
index 6f44f67a..95949459 100644
--- a/package.json
+++ b/package.json
@@ -19,8 +19,12 @@
"@babel/preset-env",
{
"corejs": 3,
- "useBuiltIns": "usage",
- "modules": false
+ "useBuiltIns": "entry",
+ "modules": false,
+ "debug": true,
+ "exclude": [
+ "es.symbol.*"
+ ]
}
]
]