pnpm-workspace.yaml
pnpm-workspace.yaml
defines the root of the workspace and enables you to
include / exclude directories from the workspace. По умолчанию, включаются все пакеты из всех подкаталогов.
For example:
pnpm-workspace.yaml
packages:
# all packages in direct subdirs of packages/
- 'packages/*'
# all packages in subdirs of components/
- 'components/**'
# exclude packages that are inside test directories
- '!**/test/**'
Корневой пакет всегда включается, даже если используются кастомные расположения множественной выборки (*).