From 182bd9b48bdad8407b9b7b16265b831a788da6b4 Mon Sep 17 00:00:00 2001 From: Renato Ribeiro Date: Wed, 5 Feb 2020 20:18:10 -0300 Subject: [PATCH] fix(slaq): babel targets node 8 --- babel.config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/babel.config.js b/babel.config.js index c2d9118..dbb4ce9 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,3 +1,6 @@ module.exports = { - presets: ["@babel/preset-typescript", "@babel/preset-env"] + presets: [ + "@babel/preset-typescript", + ["@babel/preset-env", { targets: { node: "8" } }] + ] };