mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-25 02:21:52 -04:00
Global package now has a default location. Not sure if it was broken by some changes or it never actually worked without explicitly setting the `global-path` config value.
12 lines
260 B
JavaScript
12 lines
260 B
JavaScript
'use strict'
|
|
module.exports = {
|
|
concurrency: 16,
|
|
fetchRetries: 2,
|
|
fetchRetryFactor: 10,
|
|
fetchRetryMintimeout: 1e4, // 10 seconds
|
|
fetchRetryMaxtimeout: 6e4, // 1 minute
|
|
storePath: 'node_modules/.store',
|
|
globalPath: '~/.pnpm',
|
|
logger: 'pretty'
|
|
}
|