@ikamva/ngx-tailwindcss
Version:
Tailwind CSS angular schematic
17 lines (16 loc) • 433 B
TypeScript
export interface Schema {
"$schema": "http://json-schema.org/schema";
id: "SchematicsTailwind";
title: "Angular Tailwind Schema";
type: "object";
properties: {
/** Name of the project to target. */
project: {
"type": "string";
"description": "The name of the project.";
"$default": {
"$source": "projectName";
};
};
};
}