Files
notification-elements-demo/node_modules/@schematics/angular/app-shell/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

24 lines
726 B
JSON
Executable File

{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "SchematicsAngularAppShell",
"title": "Angular AppShell Options Schema",
"type": "object",
"description": "Configures your project to generate an app-shell during build time.",
"additionalProperties": false,
"properties": {
"project": {
"type": "string",
"description": "The name of the project where the app-shell should be generated.",
"$default": {
"$source": "projectName"
}
},
"serverRouting": {
"description": "Set up a server application using the Server Routing and App Engine APIs (Developer Preview).",
"type": "boolean",
"default": false
}
},
"required": ["project"]
}