{
  "name": "@isis/web",
  "$schema": "../../../node_modules/nx/schemas/project-schema.json",
  "sourceRoot": "apps/isis/web/src",
  "projectType": "application",
  "tags": ["scope:isis", "type:app", "platform:web"],
  "targets": {
    "build": {
      "executor": "nx:run-commands",
      "outputs": ["{projectRoot}/dist"],
      "options": {
        "cwd": "apps/isis/web",
        "command": "vite build"
      },
      "configurations": {
        "production": {
          "command": "vite build --mode production"
        },
        "development": {
          "command": "vite build --mode development"
        }
      }
    },
    "dev": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/isis/web",
        "command": "vite --port 5180"
      }
    },
    "preview": {
      "executor": "nx:run-commands",
      "dependsOn": ["build"],
      "options": {
        "cwd": "apps/isis/web",
        "command": "vite preview --port 5180"
      }
    },
    "test": {
      "executor": "@nx/vite:test",
      "options": {
        "config": "apps/isis/web/vitest.config.ts",
        "passWithNoTests": true
      }
    },
    "lint": {
      "executor": "@nx/eslint:lint",
      "outputs": ["{options.outputFile}"]
    },
    "typecheck": {
      "executor": "nx:run-commands",
      "options": {
        "cwd": "apps/isis/web",
        "command": "tsc --noEmit"
      }
    }
  }
}
