Status quo: I'm working on a project, which has different sub projects, which are assigned to different teams. So my angular.json looks something like this:
{
....
"projects": {
"project-1": { ... }
"project-2": { ... }
....
Is there a way to move the configuration for project-1 into it's own file.
Reason: This would allow us to make the approval process better, where we can define CODEOWNERS per file, but not per file part. Since angular.json is over all projects, it needs the most approvals, which usually just ends up with the responsible team asking us to approve the change, because they changed the configuration responsible for them.