From 0bd5b1a6573f93077ef2e07fffb018cd3effcd0e Mon Sep 17 00:00:00 2001 From: Christian Liebel Date: Mon, 18 Jun 2018 11:01:32 +0200 Subject: [PATCH] feat(@schematics/schematics): update tsconfig.json libs to include es2018 Update the lib property in tsconfig.json files to include es2018. --- .../schematics/schematics/blank/project-files/tsconfig.json | 2 +- packages/schematics/schematics/schematic/files/tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/schematics/schematics/blank/project-files/tsconfig.json b/packages/schematics/schematics/blank/project-files/tsconfig.json index 0b296985db..c294d9b633 100644 --- a/packages/schematics/schematics/blank/project-files/tsconfig.json +++ b/packages/schematics/schematics/blank/project-files/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "baseUrl": "tsconfig", "lib": [ - "es2017", + "es2018", "dom" ], "declaration": true, diff --git a/packages/schematics/schematics/schematic/files/tsconfig.json b/packages/schematics/schematics/schematic/files/tsconfig.json index e93f82906a..eaf639af39 100644 --- a/packages/schematics/schematics/schematic/files/tsconfig.json +++ b/packages/schematics/schematics/schematic/files/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "baseUrl": "tsconfig", "lib": [ - "es2017", + "es2018", "dom" ], "module": "commonjs",