While we build a angular library, is it possible to exclude certain folders that are present within the library, for eg : a sub library.
I am trying to add the exclude option in the library build json as follows:
"build": {
"builder": "@angular-devkit/build-ng-packagr:build",
"options": {
"tsConfig": "tsconfig.lib.json",
"project": "src/app/modules/upload/ng-package.json",
"exclude":[
"src/app/modules/*"
]
}
}