Icard/angular-clarity-master(work.../node_modules/@schematics/angular/app-shell/schema.json

47 lines
1.3 KiB
JSON
Raw Normal View History

2024-07-16 14:55:36 +00:00
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "SchematicsAngularAppShell",
"title": "Angular AppShell Options Schema",
"type": "object",
"description": "Generates an application shell for running a server-side version of an app.",
"additionalProperties": false,
"properties": {
"project": {
"type": "string",
"description": "The name of the related client app.",
"$default": {
"$source": "projectName"
}
},
"route": {
"type": "string",
"description": "Route path used to produce the application shell.",
"default": "shell"
},
"appId": {
"type": "string",
"format": "html-selector",
"description": "The application ID to use in withServerTransition().",
"default": "serverApp",
"x-deprecated": "This option is no longer used."
},
"main": {
"type": "string",
"description": "The name of the main entry-point file.",
"default": "main.server.ts"
},
"rootModuleFileName": {
"type": "string",
"description": "The name of the root module file",
"default": "app.module.server.ts"
},
"rootModuleClassName": {
"type": "string",
"format": "html-selector",
"description": "The name of the root module class.",
"default": "AppServerModule"
}
},
"required": ["project"]
}