跳到主内容
版本:Next

pnpm config

别名: c

管理配置文件。

配置文件采用 INI 格式。

本地配置文件位于项目的根目录中,名为 .npmrc

全局配置文件位于以下位置之一:

  • 如果设置了 $XDG_CONFIG_HOME 环境变量,则为 $XDG_CONFIG_HOME/pnpm/rc
  • 在 Windows 上:~/AppData/Local/pnpm/config/rc
  • 在 macOS 上:~/Library/Preferences/pnpm/rc
  • 在 Linux 上:~/.config/pnpm/rc

命令行

set <key> <value>

设置config中提供的key,和相对应的value

get <key>

打印config中提供的key对应的value

delete <key>

从config文件中删除配置过的key。

list

显示所有config的设置。

配置项

--global, -g

Set the configuration in the global config file.

--location

When set to project, the .npmrc file at the nearest package.json will be used.

When set to global, the performance is the same as setting the --global option.

--json

Show all the config settings in JSON format.