-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathturbo.json
63 lines (63 loc) · 1.14 KB
/
turbo.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"$schema": "https://turborepo.org/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [
".next/**",
"!.next/cache/**",
"build/**",
"node_modules/.cache/metro/**",
"dist/**"
]
},
"start": {
"cache": false,
"dependsOn": ["build"],
"persistent": true
},
"dev": {
"cache": false,
"persistent": true
},
"test": {
"dependsOn": ["build"],
"inputs": ["**/*.{ts,tsx,js,jsx}"]
},
"typecheck": {}
},
"globalEnv": [
"DEBUG",
"HOST",
"PORT",
"API_SERVER",
"URL_PREFIX",
"VERSION",
"GOOGLE_CLIENT_ID",
"SENTRY_DSN",
"SENTRY_AUTH_TOKEN",
"FATHOM_SITE_ID",
"API_SERVER",
"FATHOM_SITE_ID"
],
"globalPassThroughEnv": [
"NODE_ENV",
"CI",
"VERCEL",
"VERCEL_ENV",
"VERCEL_URL",
"CORS_HOST",
"DATABASE_URL",
"JWT_SECRET",
"SESSION_SECRET",
"GOOGLE_CLIENT_SECRET",
"OPENAI_API_KEY",
"GOOGLE_MAPS_API_KEY",
"SMTP_HOST",
"SMTP_USER",
"SMTP_PASS",
"SMTP_FROM",
"SMTP_REPLY_TO",
"npm_lifecycle_event"
]
}