turbo.json34 lines · main
1{
2 "$schema": "https://turbo.build/schema.json",
3 "globalDependencies": ["**/.env.*local", "tsconfig.base.json"],
4 "globalEnv": ["NODE_ENV", "CI"],
5 "globalPassThroughEnv": ["BRIVEN_*", "SUPABASE_*", "LIVE_SUPABASE_SECRET_KEY"],
6 "tasks": {
7 "build": {
8 "dependsOn": ["^build"],
9 "outputs": [".next/**", "!.next/cache/**", "dist/**", "build/**"]
10 },
11 "dev": {
12 "cache": false,
13 "persistent": true
14 },
15 "lint": {
16 "outputs": []
17 },
18 "typecheck": {
19 "dependsOn": ["^build"],
20 "outputs": []
21 },
22 "test": {
23 "dependsOn": ["^build"],
24 "outputs": []
25 },
26 "test:e2e": {
27 "dependsOn": ["^build"],
28 "outputs": ["playwright-report/**"]
29 },
30 "clean": {
31 "cache": false
32 }
33 }
34}