mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-29 04:21:39 -04:00
14 lines
225 B
TypeScript
14 lines
225 B
TypeScript
import { type Config } from '@pnpm/config'
|
|
|
|
export type ConfigCommandOptions = Pick<Config,
|
|
| 'configDir'
|
|
| 'cliOptions'
|
|
| 'dir'
|
|
| 'global'
|
|
| 'npmPath'
|
|
| 'rawConfig'
|
|
> & {
|
|
json?: boolean
|
|
location?: 'global' | 'project'
|
|
}
|