From 33589e2b98a34428bad43fc61e081dd8debf2e77 Mon Sep 17 00:00:00 2001 From: Filipe Silva Date: Fri, 17 Feb 2017 11:37:05 +0000 Subject: [PATCH] fix(@angular/cli): add $schema as a schema prop Fixes "Property $schema is not allowed" error on editors. --- packages/@angular/cli/lib/config/schema.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/@angular/cli/lib/config/schema.json b/packages/@angular/cli/lib/config/schema.json index 1ae503d05e5e..74d136f46de6 100644 --- a/packages/@angular/cli/lib/config/schema.json +++ b/packages/@angular/cli/lib/config/schema.json @@ -4,6 +4,9 @@ "title": "Angular CLI Config Schema", "type": "object", "properties": { + "$schema": { + "type": "string" + }, "project": { "description": "The global configuration of the project.", "type": "object",