@schematics/angular
Version:
Schematics specific to Angular
21 lines (20 loc) • 525 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema",
"title": "Tailwind CSS Schematic",
"type": "object",
"properties": {
"project": {
"type": "string",
"description": "The name of the project.",
"$default": {
"$source": "projectName"
}
},
"skipInstall": {
"description": "Skip the automatic installation of packages. You will need to manually install the dependencies later.",
"type": "boolean",
"default": false
}
},
"required": ["project"]
}