Created
August 7, 2021 17:12
-
-
Save cagcak/c86289979ed2aca53c13f7845296ce28 to your computer and use it in GitHub Desktop.
Default custom angular schematics schema
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "http://json-schema.org/schema", | |
"id": "fix-mod", | |
"type": "object", | |
"properties": { | |
"name": { | |
"type": "string", | |
"description": "Library name", | |
"$default": { | |
"$source": "argv", | |
"index": 0 | |
} | |
} | |
}, | |
"required": ["name"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment