new.json 958 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "$schema": "http://json-schema.org/schema",
  3. "$id": "ng-cli://commands/new.json",
  4. "description": "Creates a new workspace and an initial Angular app.",
  5. "$longDescription": "./new.md",
  6. "$aliases": [ "n" ],
  7. "$scope": "out",
  8. "$type": "schematic",
  9. "$impl": "./new-impl#NewCommand",
  10. "type": "object",
  11. "allOf": [
  12. {
  13. "properties": {
  14. "collection": {
  15. "type": "string",
  16. "aliases": [ "c" ],
  17. "description": "A collection of schematics to use in generating the initial app."
  18. },
  19. "verbose": {
  20. "type": "boolean",
  21. "default": false,
  22. "aliases": [ "v" ],
  23. "description": "When true, adds more details to output logging."
  24. }
  25. },
  26. "required": []
  27. },
  28. { "$ref": "./definitions.json#/definitions/base" },
  29. { "$ref": "./definitions.json#/definitions/schematic" },
  30. { "$ref": "./definitions.json#/definitions/interactive" }
  31. ]
  32. }