| 12345678910111213141516171819202122232425262728293031323334 |
- {
- "$schema": "https://turbo.build/schema.json",
- "globalDependencies": ["**/.env.*local", "tsconfig.base.json"],
- "globalEnv": ["NODE_ENV", "CI"],
- "globalPassThroughEnv": ["BRIVEN_*", "SUPABASE_*", "LIVE_SUPABASE_SECRET_KEY"],
- "tasks": {
- "build": {
- "dependsOn": ["^build"],
- "outputs": [".next/**", "!.next/cache/**", "dist/**", "build/**"]
- },
- "dev": {
- "cache": false,
- "persistent": true
- },
- "lint": {
- "outputs": []
- },
- "typecheck": {
- "dependsOn": ["^build"],
- "outputs": []
- },
- "test": {
- "dependsOn": ["^build"],
- "outputs": []
- },
- "test:e2e": {
- "dependsOn": ["^build"],
- "outputs": ["playwright-report/**"]
- },
- "clean": {
- "cache": false
- }
- }
- }
|