Open
Description
🚀 Feature request
- new
- build
- serve
- test
- e2e
- generate
- add
- update
- lint
- extract-i18n
- run
- config
- help
- version
- doc
Description
I have a monorepository and I want to split my angular.json
into separate files.
So that I can have something like this:
{
"version": 2,
"projects": {
"module-auth": "packages/auth",
"module-core": "packages/core",
"module-button": "packages/button"
}
}
After working with NX I noticed that with Lerna and the usual setup my angular.json
file has 119 lines of code even though I basically have an empty repository. I believe that having a single angular.json
file is a very bad idea, especially for bigger monorepositories or UI libraries.
Describe the solution you'd like
Make the JSON configuration 1:1 with what NX does or implement similar functionality.