pnpm config
Aliases: c
Gestisci i file di configurazione.
The configuration files are in INI
format.
The local configuration file is located in the root of the project and is named .npmrc
.
Il file di configurazione globale si trova in una delle seguenti posizioni:
- 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
Comandi
set <key> <value>
Imposta la chiave di configurazione sul valore fornito.
get <key>
Stampa il valore di configurazione per la chiave fornita.
delete <key>
Rimuove la chiave di configurazione dal file di configurazione.
list
Mostra tutte le impostazioni di configurazione.
Opzioni
--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.