From 795a4db8660b95a3a7cc4e20a6377f543c92b627 Mon Sep 17 00:00:00 2001 From: Anthony Ciccarello Date: Mon, 18 Feb 2019 19:11:35 -0600 Subject: [PATCH] update TypeScript target to es2015 Closes #5 Related to TypeStrong/typedoc#943 --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 7f0f005..d5b5948 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "module": "commonjs", - "target": "es5", + "target": "es2015", "experimentalDecorators": true, "allowJs": true, "noImplicitAny": true, @@ -18,4 +18,4 @@ "exclude": [ "node_modules" ] -} \ No newline at end of file +}