設定
pnpm settings are divided into two categories:
- Authentication and certificate settings are stored in INI files. These contain sensitive credentials and should not be committed to your repository. See Authentication Settings for details.
- All other settings are stored in YAML files: the project
pnpm-workspace.yamland the globalconfig.yaml.
pnpm also no longer reads settings from the pnpm field of package.json. Settings should be defined in pnpm-workspace.yaml.
Local project configuration
Project-level settings go in pnpm-workspace.yaml:
nodeVersion: "22"
saveExact: true
Global configuration
The global YAML config file (config.yaml) is located at one of the following paths:
- If the $XDG_CONFIG_HOME env variable is set, then $XDG_CONFIG_HOME/pnpm/config.yaml
- On Windows: ~/AppData/Local/pnpm/config/config.yaml
- On macOS: ~/Library/Preferences/pnpm/config.yaml
- On Linux: ~/.config/pnpm/config.yaml
The global rc file (for registry and auth settings only) is at:
- $XDG_CONFIG_HOME 環境変数が設定されている場合、 $XDG_CONFIG_HOME/pnpm/rc
- Windowsの場合: ~/AppData/Local/pnpm/config/rc
- macOSの場合: ~/Library/Preferences/pnpm/rc
- Linuxの場合: ~/.config/pnpm/rc
Environment variables
Environment variables whose names start with pnpm_config_ are loaded into configuration. These override settings from pnpm-workspace.yaml but not CLI arguments.
pnpm no longer reads npm_config_* environment variables. Use pnpm_config_* environment variables instead (e.g., pnpm_config_registry instead of npm_config_registry).
例:
pnpm_config_save_exact=true pnpm add foo
If you need pnpm to work across multiple hard drives or filesystems, please read the FAQ.
See the config command for more information on managing configuration.