{
  "$schema": "../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "packages/auth/src",
  "projectType": "library",
  "targets": {
    "build": {
      "executor": "@nrwl/js:tsc",
      "outputs": ["{options.outputPath}"],
      "options": {
        "outputPath": "dist/packages/auth",
        "main": "packages/auth/src/index.ts",
        "tsConfig": "packages/auth/tsconfig.lib.json",
        "assets": ["packages/auth/*.md"]
      }
    },
    "lint": {
      "executor": "@nrwl/linter:eslint",
      "outputs": ["{options.outputFile}"],
      "options": {
        "lintFilePatterns": ["packages/auth/**/*.ts"]
      }
    },
    "test": {
      "executor": "@nrwl/jest:jest",
      "outputs": ["coverage/packages/auth"],
      "options": {
        "jestConfig": "packages/auth/jest.config.ts",
        "passWithNoTests": true
      }
    }
  },
  "tags": []
}
