From e520ebd9bbbd7078586167f4f4bb81432bff46d3 Mon Sep 17 00:00:00 2001 From: Nico Rehwaldt Date: Mon, 11 Nov 2019 21:29:52 +0100 Subject: [PATCH] feat: do not transpile async (#354) Closes #353 --- .babelrc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.babelrc b/.babelrc index 23c31d36..00ca0650 100644 --- a/.babelrc +++ b/.babelrc @@ -3,7 +3,11 @@ [ "@babel/env", { - "modules": false + "modules": false, + "exclude": [ + "@babel/plugin-transform-async-to-generator", + "@babel/plugin-transform-regenerator" + ] } ], "@babel/react"