angular-cn/packages/localize/schematics/ng-add/schema.json

22 lines
598 B
JSON

{
"$schema": "http://json-schema.org/schema",
"id": "SchematicsAngularLocalizeNgAdd",
"title": "Angular Localize Ng Add Schema",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the project.",
"$default": {
"$source": "projectName"
}
},
"useAtRuntime": {
"type": "boolean",
"description": "If set then `@angular/localize` is included in the `dependencies` section of `package.json`, rather than `devDependencies`, which is the default.",
"default": false
}
},
"required": []
}