From 0792f1a7a17c9a4bfb654f16ac82552180898ec0 Mon Sep 17 00:00:00 2001 From: Alfonso Presa Date: Wed, 8 Jul 2015 22:09:17 +0200 Subject: [PATCH] fix(tsconfig): target should be lower case closes #2938 --- modules/angular2/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/angular2/tsconfig.json b/modules/angular2/tsconfig.json index 54a0674148..03fd021afd 100644 --- a/modules/angular2/tsconfig.json +++ b/modules/angular2/tsconfig.json @@ -7,7 +7,7 @@ "rootDir": ".", "sourceMap": true, "sourceRoot": ".", - "target": "ES5", + "target": "es5", "outDir": "../../dist/js/cjs" } }