-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathturbo.json
More file actions
55 lines (55 loc) · 1.05 KB
/
Copy pathturbo.json
File metadata and controls
55 lines (55 loc) · 1.05 KB
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
{
"$schema": "https://turborepo.org/schema.json",
"globalEnv": [
"TX5DR_CLUBLOG_API_KEY"
],
"globalPassThroughEnv": [
"PORT",
"WEB_PORT",
"TX5DR_WEB_DEV_PORT",
"TX5DR_BACKEND_TARGET",
"TX5DR_SERVER_READY_FILE",
"TX5DR_SERVER_PORT_AUTO",
"TX5DR_SERVER_PORT_STRICT",
"TX5DR_SERVER_PORT_SCAN_STEPS",
"TX5DR_DEV_NODE_PATH",
"RIGCTLD_ENABLED",
"RIGCTLD_BIND",
"RIGCTLD_PORT",
"LOG_LEVEL",
"TX5DR_DEBUG_MODULES",
"TX5DR_STDOUT_DEBUG",
"TX5DR_LEAK_DETECTOR",
"TX5DR_DEBUG_VOICE_TX",
"TX5DR_DEBUG_REALTIME_JITTER",
"RTC_DATA_AUDIO_UDP_PORT",
"RTC_DATA_AUDIO_ICE_UDP_MUX",
"TX5DR_CLUBLOG_API_KEY"
],
"tasks": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist/**"
]
},
"dev": {
"cache": false,
"persistent": true,
"dependsOn": [
"^build"
]
},
"lint": {
"outputs": []
},
"test": {
"outputs": []
}
},
"globalDependencies": [
"packages/shared-config/**"
]
}