aboutsummaryrefslogtreecommitdiff
path: root/babel.config.json
diff options
context:
space:
mode:
Diffstat (limited to 'babel.config.json')
-rw-r--r--babel.config.json21
1 files changed, 21 insertions, 0 deletions
diff --git a/babel.config.json b/babel.config.json
new file mode 100644
index 00000000..4d17f001
--- /dev/null
+++ b/babel.config.json
@@ -0,0 +1,21 @@
+{
+ "presets": [
+ [
+ "@babel/preset-env",
+ {
+ "corejs": 3,
+ "useBuiltIns": "entry",
+ "modules": false,
+ "exclude": [
+ "es.symbol.*"
+ ]
+ }
+ ],
+ [
+ "@babel/preset-react",
+ {
+ "runtime": "automatic"
+ }
+ ]
+ ]
+}