{
  "name": "@oshun/content-service-app",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/oshun/content-service/src",
  "projectType": "application",
  "tags": ["scope:oshun", "type:app", "layer:api", "platform:node"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/dist"],
      "options": {
        "cwd": "apps/oshun/content-service",
        "command": "esbuild src/main.ts --bundle --platform=node --format=esm --target=node22 --outfile=dist/main.js --sourcemap"
      }
    },
    "dev": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/oshun/content-service",
        "command": "tsx watch src/main.ts"
      }
    },
    "start": {
      "executor": "nx:run-commands",
      "dependsOn": ["build"],
      "options": {
        "cwd": "apps/oshun/content-service",
        "command": "node dist/main.js"
      }
    },
    "lint": {
      "executor": "@nx/eslint:lint",
      "options": {
        "lintFilePatterns": ["apps/oshun/content-service/src/**/*.ts"]
      }
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/oshun/content-service",
        "command": "tsc --noEmit -p tsconfig.json"
      }
    }
  }
}
