Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what are all the angular.json options in angular 6? [closed]

The Angular-CLI Documentation does not seem contain a full reference to the schema of the angular.json, is there any place to find a more complete list of available options?

like image 567
ppgowda4 Avatar asked Jul 10 '18 12:07

ppgowda4


1 Answers

With a little digging I found the Schema Reference for the angular.json file inside the @Angular/cli github repo at

https://github.com/angular/angular-cli/wiki/angular-workspace (no longer working, see update below)

Schema of schema.json:

Some of the options inside the angular.json file reference schema files. The schema of schema.json files can be found at http://json-schema.org/.

Update

The original link no longer works. The (archived) version of the angular.json schema is still available.

However, an updated description is accessible via the Angular Docs.

like image 98
Jens Habegger Avatar answered Oct 31 '22 14:10

Jens Habegger