diff --git a/docs/shared/recipes/running-tasks/reduce-repetitive-configuration.md b/docs/shared/recipes/running-tasks/reduce-repetitive-configuration.md index 4aa70664e4..b39cea0a0f 100644 --- a/docs/shared/recipes/running-tasks/reduce-repetitive-configuration.md +++ b/docs/shared/recipes/running-tasks/reduce-repetitive-configuration.md @@ -225,7 +225,9 @@ Now the `project.json` files can be reduced to this: "options": { "assets": ["libs/lib1/*.md", "libs/lib1/src/images/*"] } - } + }, + "lint": {}, + "test": {} }, "tags": [] } @@ -241,6 +243,8 @@ Now the `project.json` files can be reduced to this: "sourceRoot": "libs/lib2/src", "projectType": "library", "targets": { + "build": {}, + "lint": {}, "test": { "options": { "testTimeout": 10000 @@ -261,6 +265,8 @@ Now the `project.json` files can be reduced to this: "sourceRoot": "libs/lib3/src", "projectType": "library", "targets": { + "build": {}, + "lint": {}, "test": {} }, "tags": []