From 60a734113f901789cb2865f3afa2bc2172bd732c Mon Sep 17 00:00:00 2001 From: Conduitry Date: Mon, 19 Mar 2018 13:57:42 -0400 Subject: [PATCH] set typescript target to ES6 --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 8dc5a51c1d..14c8034b76 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,6 @@ { "compilerOptions": { + "target": "ES6", "diagnostics": true, "noImplicitThis": true, "noEmitOnError": true, @@ -7,7 +8,6 @@ "lib": ["es5", "es6", "dom"], "importHelpers": true }, - "target": "ES5", "include": [ "src" ],