Files
pnpm/config/plugin-commands-config/src/ConfigCommandOptions.ts
2023-03-18 14:57:29 +02:00

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