ng config
从本工作空间的 angular.json 文件中获取或设置 Angular 的配置值。
Retrieves or sets Angular configuration values in the angular.json file for the workspace.
ng config <json-path> <value> [options]
参数
参数 | 说明 | Value Type |
---|---|---|
<json-path> | 要设置或查询的配置键,为 JSON path 格式。比如 "a[3].foo.bar[2]"。如果没有提供新值,则返回此配置键对应的当前值。 The configuration key to set or query, in JSON path format. For example: "a[3].foo.bar[2]". If no new value is provided, returns the current value of this key. | string |
<value> | 如果提供,则为指定配置键的新值。 If provided, a new value for the given configuration key. | string |
选项
选项 | 说明 | Value Type | Default Value |
---|---|---|---|
--global | 访问此调用者 home 目录下的全局配置。 Access the global configuration in the caller's home directory. 别名: -g | boolean | false |
--help | 在控制台显示关于本命令的帮助信息。 Shows a help message for this command in the console. | true|false|json|JSON | false |