Skip to content
Snippets Groups Projects
turbo.json 962 B
{
  "$schema": "https://turbo.build/schema.json",
  "globalDependencies": ["**/.env*", "tsconfig.json", ".eslintrc.js", ".eslintignore", ".prettierrc.yaml"],
  "pipeline": {
    "build-env": {
      "dependsOn": ["^build-env"],
      "outputs": ["dist/**"]
    },
    "preview": {
      "dependsOn": ["^preview"],
      "outputs": ["dist/**", ".next/**"]
    },
    "build": {
      "dependsOn": ["^build"],
      "outputs": ["dist/**", ".next/**"]
    },
    "type": {
      "outputs": ["tsconfig.tsbuildinfo"]
    },
    "build-dev": {
      "dependsOn": ["^build-dev"],
      "outputs": ["dist/**", ".next/**"]
    },
    "lint": {
      "cache": false
    },
    "test": {},
    "dev": {
      "cache": false,
      "persistent": true
    },
    "sb": {
      "outputs": ["storybook-static/**"]
    },
    "push": {
      "dependsOn": ["^lint", "^test", "^build"],
      "outputs": ["dist/**", ".next/**"]
    }
  }
}