{
    "$schema": "http://json-schema.org/schema",
    "id": "nz-ng-add",
    "title": "Ant Design of Angular(NG-ZORRO) ng-add schematic",
    "type": "object",
    "properties": {
        "project": {
            "type": "string",
            "description": "Name of the project.",
            "$default": {
                "$source": "projectName"
            }
        },
        "skipPackageJson": {
            "type": "boolean",
            "default": false,
            "description": "Do not add ng-zorro-antd dependencies to package.json (e.g., --skipPackageJson)"
        },
        "sharedModel": {
            "type": "boolean",
            "default": true,
            "description": "是否要添加公享模块，现在的风格化推荐的，很少会不加。"
        },
        "coreModel": {
            "type": "boolean",
            "default": true,
            "description": "是否要添加核心模块，现在的风格化推荐的，很少会不加。",
            "x-prompt": "是否创建核心模块？--这样会把AppModule里面的其它模块打包到coreModule里面去，让入口模块看起来更加简洁"
        }
    },
    "required": []
}
