From a2e44bb8b70e13bf7356530e2d10f08f9817234f Mon Sep 17 00:00:00 2001 From: Charles Lyding <19598772+clydin@users.noreply.github.com> Date: Mon, 10 Sep 2018 20:46:23 -0400 Subject: [PATCH] build: use native async/await support Node.js 8.9.4 (minimum supported version for the CLI) contains native async support. --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index c4a5934226..5e324d59e6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -22,7 +22,7 @@ // source in devtools. "inlineSources": true, "strictNullChecks": true, - "target": "es2016", + "target": "es2017", "lib": [ "es2017" ],