Files
notification-elements-demo/node_modules/@schematics/angular/environments/schema.json
Giuliano Silvestro 5d0c9ec7eb Initial commit: notification-elements-demo app
Interactive Angular 19 demo for @sda/notification-elements-ui with
6 sections: Bell & Feed, Notification Center, Inbox, Comments &
Threads, Mention Input, and Full-Featured layout. Includes mock
data, dark mode toggle, and real-time event log.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 21:49:19 +10:00

19 lines
831 B
JSON
Executable File

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "SchematicsAngularEnvironment",
"title": "Angular Environments Options Schema",
"type": "object",
"additionalProperties": false,
"description": "Generates and configures environment files for your project. Environment files allow you to define different settings and configurations for various environments, such as development, testing, and production. This schematic helps you create and manage these files, making it easier to customize your application's behavior for each environment.",
"properties": {
"project": {
"type": "string",
"description": "The name of the project where the environment files should be created or updated.",
"$default": {
"$source": "projectName"
}
}
},
"required": ["project"]
}