Skip to content
Snippets Groups Projects
turbo.json 499 B
Newer Older
  • Learn to ignore specific revisions
  • {
      "$schema": "https://turbo.build/schema.json",
    
      "globalDependencies": ["**/.env.*local", "./tsconfig.json"],
      "tasks": {
    
        "build": {
          "dependsOn": ["^build"],
    
    Alex Yang's avatar
    Alex Yang committed
          "outputs": ["dist/**", "lib/**", ".next/**", "!.next/cache/**"]
    
    Alex Yang's avatar
    Alex Yang committed
        "lint": {
    
          "dependsOn": ["^build"]
    
        "test": {
    
          "dependsOn": ["^build"]
    
    Alex Yang's avatar
    Alex Yang committed
        "circular-check": {},
    
        "e2e": {
    
          "dependsOn": ["^build"]
    
        "dev": {
          "cache": false,
          "persistent": true
        }
      }
    }