From 7281f020f4d9c1c687ca58f8b0ec03bbfdc93ca6 Mon Sep 17 00:00:00 2001 From: Dan Bucholtz Date: Thu, 2 Mar 2017 14:15:54 -0600 Subject: [PATCH] chore(tsconfig): add target of es2015, systemjs to types --- tsconfig.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 364dbf3f95..7823d30a72 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -10,12 +10,12 @@ "noImplicitAny": true, "removeComments": false, "sourceMap": true, - "target": "es5", - "types": ["jasmine"] + "target": "es2015", + "types": ["jasmine", "systemjs"] }, "include": [ - "./src/**/*.ts", - "./demos/src/**/*.ts" + "src/**/*.ts", + "demos/src/**/*.ts" ], "compileOnSave": false, "buildOnSave": false,