{
  "extends": "nx/presets/npm.json",
  "defaultBase": "develop",
  "tasksRunnerOptions": {
    "default": {
      "runner": "nx/tasks-runners/default",
      "options": {
        "cacheableOperations": [
          "build",
          "lint",
          "test",
          "test-all",
          "test-integration",
          "test-integration-all"
        ],
        "verbose": true
      }
    }
  },
  "targetDefaults": {
    "build": {
      "cache": true
    },
    "test": {
      "cache": true
    },
    "lint": {
      "cache": true
    },
    "test-integration": {
      "cache": true
    },
    "test-all": {
      "cache": true
    },
    "test-integration-all": {
      "cache": true
    }
  },
  "workspaceLayout": {
    "projectsDir": "humand-packages"
  },
  "namedInputs": {
    "rootPackage": [
      "{workspaceRoot}/package.json"
    ],
    "rootLock": [
      "{workspaceRoot}/pnpm-lock.yaml"
    ],
    "sharedDependencies": [
      "rootPackage",
      "rootLock"
    ],
    "rootWorkspace": [
      "{workspaceRoot}/pnpm-workspace.yaml"
    ],
    "sharedWorkspace": [
      "sharedDependencies",
      "rootWorkspace"
    ],
    "rootTsConfig": [
      "{workspaceRoot}/tsconfig.build.json"
    ],
    "shared": [
      "sharedWorkspace",
      "rootTsConfig"
    ],
    "default": [
      "{projectRoot}/**/*",
      "shared"
    ]
  },
  "s3": {
    "region": "us-east-1",
    "bucket": "humand-nx-cache",
    "localMode": "read-write",
    "ciMode": "read-write",
    "endpoint": "https://s3.amazonaws.com",
    "forcePathStyle": true
  }
}