From e5de190a0816ff0375fa01dce154cf5cfd2edf9f Mon Sep 17 00:00:00 2001 From: Danny Blue Date: Mon, 27 Feb 2017 10:07:50 -0500 Subject: [PATCH] fix(@angular/cli): add dom to lib array fixes #5046 --- packages/@angular/cli/blueprints/ng/files/tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/@angular/cli/blueprints/ng/files/tsconfig.json b/packages/@angular/cli/blueprints/ng/files/tsconfig.json index cde5e35054a2..7a9d9e8c58ab 100644 --- a/packages/@angular/cli/blueprints/ng/files/tsconfig.json +++ b/packages/@angular/cli/blueprints/ng/files/tsconfig.json @@ -7,8 +7,10 @@ "moduleResolution": "node", "emitDecoratorMetadata": true, "experimentalDecorators": true, + "target": "es5", "lib": [ - "es2016" + "es2016", + "dom" ] } }