{
  "$schema": "../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "packages/hooks/src",
  "projectType": "library",
  "tags": ["scope:shared"],
  "targets": {
    "build": {
      "executor": "@nrwl/js:tsc",
      "outputs": ["{options.outputPath}"],
      "options": {
        "outputPath": "dist/packages/hooks",
        "tsConfig": "packages/hooks/tsconfig.lib.json",
        "rootDir": "packages/hooks/src",
        "main": "packages/hooks/src/index.ts",
        "updateBuildableProjectDepsInPackageJson": false,
        "assets": [
          {
            "glob": "CHANGELOG.md",
            "input": "packages/hooks",
            "output": "/"
          },
          {
            "glob": "README.md",
            "input": "",
            "output": "/"
          },
          {
            "glob": "LICENSE",
            "input": "",
            "output": "/"
          }
        ]
      }
    },
    "lint": {
      "executor": "@nrwl/linter:eslint",
      "outputs": ["{options.outputFile}"],
      "options": {
        "lintFilePatterns": ["packages/hooks/**/*.{ts,tsx,js,jsx,md}"]
      }
    },
    "test": {
      "executor": "@nrwl/jest:jest",
      "outputs": ["coverage/packages/hooks"],
      "options": {
        "jestConfig": "packages/hooks/jest.config.js",
        "passWithNoTests": true
      }
    }
  }
}