-
Notifications
You must be signed in to change notification settings - Fork 170
Expand file tree
/
Copy pathturbo.json
More file actions
42 lines (42 loc) · 883 Bytes
/
turbo.json
File metadata and controls
42 lines (42 loc) · 883 Bytes
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
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"NODE_ENV",
"SLACK_BOT_TOKEN",
"SLACK_SIGNING_SECRET",
"TEAMS_APP_ID",
"TEAMS_APP_PASSWORD",
"TEAMS_APP_TENANT_ID",
"GOOGLE_CHAT_CREDENTIALS",
"GOOGLE_CHAT_PUBSUB_TOPIC",
"GOOGLE_CHAT_IMPERSONATE_USER",
"WHATSAPP_ACCESS_TOKEN",
"WHATSAPP_APP_SECRET",
"WHATSAPP_PHONE_NUMBER_ID",
"WHATSAPP_VERIFY_TOKEN",
"BOT_USERNAME",
"REDIS_URL",
"EDGE_CONFIG"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "docs/**", ".next/**", "!.next/cache/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"test": {
"dependsOn": ["build"],
"outputs": []
},
"typecheck": {
"dependsOn": ["^build"],
"outputs": []
},
"clean": {
"cache": false
}
}
}