aboutsummaryrefslogtreecommitdiff
path: root/scripts/babel.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/babel.config.js')
-rw-r--r--scripts/babel.config.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/babel.config.js b/scripts/babel.config.js
new file mode 100644
index 0000000..0280c3d
--- /dev/null
+++ b/scripts/babel.config.js
@@ -0,0 +1,16 @@
+const presets = [
+ [
+ "@babel/env",
+ {
+ targets: {
+ edge: "15",
+ firefox: "40",
+ chrome: "47",
+ safari: "10.1",
+ },
+ useBuiltIns: "usage",
+ },
+ ],
+];
+
+module.exports = { presets };