How to resolve “Data path “” should not have additional properties(es5browsersupport)” error in angular
If you have faced or are facing the below error while running your angular application, then this post is for you. Schema validation failed with the following errors: Data path “” should NOT have additional properties(es5BrowserSupport) Solution There are two ways to remove this error, choose any of the below as per the requirement. 1. Remove es5BrowserSupport option from application Find angular.json file in your project and search for es5BrowserSupport. Comment this line as shown in the image below. Restart the application using command ng serve. This approach is not recommended if you want your application to support older browsers. 2. Upgrade versions to support es5BrowserSupport IfRead More →