{
  "name": "@hathor/world-api",
  "$schema": "../../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/hathor/world-api/src",
  "projectType": "application",
  "tags": ["scope:hathor", "type:app"],
  "targets": {
    "build": {
      "executor": "@nx/js:tsc",
      "outputs": ["{options.outputPath}"],
      "options": {
        "outputPath": "dist/apps/hathor/world-api",
        "main": "apps/hathor/world-api/src/index.ts",
        "tsConfig": "apps/hathor/world-api/tsconfig.app.json",
        "assets": ["apps/hathor/world-api/*.md"],
        "buildLibsFromSource": true
      }
    },
    "serve": {
      "executor": "@nx/js:node",
      "options": {
        "buildTarget": "@hathor/world-api:build",
        "watch": true
      }
    },
    "lint": {
      "executor": "@nx/eslint:lint",
      "outputs": ["{options.outputFile}"],
      "options": {
        "lintFilePatterns": ["apps/hathor/world-api/**/*.ts"]
      }
    },
    "test": {
      "executor": "@nx/vite:test",
      "outputs": ["{workspaceRoot}/coverage/apps/hathor/world-api"],
      "options": {
        "config": "apps/hathor/world-api/vitest.config.ts",
        "reportsDirectory": "../../coverage/apps/hathor/world-api"
      }
    }
  }
}
