aboutsummaryrefslogtreecommitdiff
path: root/babel.config.json
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2024-01-02 12:59:19 +0300
committerGravatar Vitaly Takmazov2024-01-02 12:59:19 +0300
commite923dd8eb2558057fe41d6c6cd4edf25c3d8fbc5 (patch)
tree3198fd9890635fb7e3e01dae0045e633a67b33cc /babel.config.json
parent8aa755e1cc708b2153ebacd826125d5200df7c69 (diff)
Move Babel configuration and update dependencies
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"
+ }
+ ]
+ ]
+}