From ece0d628648f5135b489ae0a4b905344b2db449c Mon Sep 17 00:00:00 2001 From: Matteo Manzinello Date: Tue, 14 May 2019 16:02:35 +0200 Subject: [PATCH] example of babel.config.js --- babel.config.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 babel.config.js diff --git a/babel.config.js b/babel.config.js new file mode 100644 index 0000000..c2651f1 --- /dev/null +++ b/babel.config.js @@ -0,0 +1,16 @@ +const presets = [ + [ + "@babel/env", + { + targets: { + edge: "17", + firefox: "60", + chrome: "67", + safari: "11.1" + }, + useBuiltIns: "usage" + } + ] +]; + +module.exports = { presets };