I am searching for a way to have one node_modules folder to use in my different projects. I found pnpm, installed it, and created one project with the commands:
ng new test-pnpm --skip-install
ng config cli.packageManager pnpm
pnpm install
ng serve
This project doesn't start. When I delete this project and .pnpm-stor folder, I cannot install packages for the next project with pnpm.
Can anyone tell me the steps to use it in a project, how to configure, how to install, how to add packages, and how to use it in different projects?