2019-09-20 16:05:45 +01:00
{
2021-04-12 11:12:49 +02:00
"$schema" : "http://json-schema.org/draft-07/schema" ,
"$id" : "SchematicsAngularLocalizeNgAdd" ,
2019-09-20 16:05:45 +01:00
"title" : "Angular Localize Ng Add Schema" ,
"type" : "object" ,
"properties" : {
"name" : {
"type" : "string" ,
"description" : "The name of the project." ,
"$default" : {
"$source" : "projectName"
}
2020-09-02 16:16:10 +01:00
} ,
"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
2019-09-20 16:05:45 +01:00
}
} ,
2020-09-02 16:16:10 +01:00
"required" : [ ]
2019-09-20 16:05:45 +01:00
}