nx.json
{ "$schema": "./node_modules/nx/schemas/nx-schema.json", "targetDefaults": { "clean": { "dependsOn": [ "^clean" ] }, "build": { "dependsOn": [ "clean", "^build" ], "outputs": [ "{projectRoot}/dist", "{projectRoot}/modules" ], "cache": true }, "lint": { "dependsOn": [ "^lint" ] }, "pack": { "dependsOn": [ "build" ] }, "test": { "dependsOn": [ "^test" ], "outputs": [ "{projectRoot}/coverage" ] } }, "plugins": []}