{
  "name": "@oshun/testing-infra",
  "$schema": "../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "testing",
  "projectType": "library",
  "tags": ["scope:shared", "type:lib", "layer:test-infra"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/dist"],
      "options": {
        "cwd": "testing",
        "command": "tsc -p tsconfig.build.json"
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "testing",
        "command": "tsc --noEmit"
      }
    },
    "lint": {
      "executor": "@nx/eslint:lint"
    },
    "test": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "testing",
        "command": "vitest run -c vitest.config.base.ts --root .."
      }
    },
    "test:integration": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "testing",
        "command": "vitest run -c vitest.config.integration.ts --root .."
      }
    },
    "test:e2e": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "testing",
        "command": "playwright test -c e2e/playwright.config.ts"
      }
    },
    "test:performance": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "testing/performance/benchmarks",
        "command": "vitest run -c vitest.config.ts"
      }
    }
  }
}
