pnpm config
Aliases: c
設定ファイルを管理します。
The configuration files are in INI
format.
The local configuration file is located in the root of the project and is named .npmrc
.
グローバル設定ファイルは以下のいずれかの場所にあります。
- If the $XDG_CONFIG_HOME env variable is set, then $XDG_CONFIG_HOME/pnpm/rc
- On Windows: ~/AppData/Local/pnpm/config/rc
- On macOS: ~/Library/Preferences/pnpm/rc
- On Linux: ~/.config/pnpm/rc
コマンド
set <key> <value>
設定キーを指定された値に設定します。
get <key>
指定されたキーの設定値を表示します。
delete <key>
設定ファイルから設定キーを削除します。
list
すべての設定を表示します。
Options
--global, -g
グローバル設定ファイル内の設定を設定します。
--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
すべての構成設定を JSON 形式で表示します。