{
  "$schema": "https://turborepo.org/schema.json",
  "tasks": {
    "build": {
      "dependsOn": [
        "^build"
      ],
      "outputs": [
        "dist/**"
      ]
    },
    "test": {
      "dependsOn": [
        "^test"
      ]
    },
    "test:watch": {
      "dependsOn": [
        "^test:watch"
      ],
      "cache": false,
      "persistent": true
    },
    "coverage": {
      "dependsOn": [
        "^coverage"
      ]
    },
    "lint": {
      "dependsOn": [
        "^lint"
      ]
    },
    "typescript": {
      "dependsOn": [
        "^typescript"
      ]
    },
    "extract-translations": {}
  }
}