Files
pnpm/lib/defaults.js
Zoltan Kochan 5fdddd172e fix(install): global install
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.
2016-09-03 11:21:10 +03:00

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'
}