forked from duncan4123/gt3code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
69 lines (69 loc) · 1.57 KB
/
Copy pathturbo.json
File metadata and controls
69 lines (69 loc) · 1.57 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"HOST",
"PORT",
"VITE_WS_URL",
"VITE_DEV_SERVER_URL",
"T3CODE_LOG_WS_EVENTS",
"T3CODE_MODE",
"T3CODE_PORT",
"T3CODE_NO_BROWSER",
"T3CODE_HOME",
"T3CODE_AUTH_TOKEN",
"T3CODE_TAILSCALE_SERVE",
"T3CODE_TAILSCALE_SERVE_PORT",
"T3CODE_DESKTOP_WS_URL",
"T3CODE_TRACE_MIN_LEVEL",
"T3CODE_TRACE_TIMING_ENABLED",
"T3CODE_TRACE_FILE",
"T3CODE_TRACE_MAX_BYTES",
"T3CODE_TRACE_MAX_FILES",
"T3CODE_TRACE_BATCH_WINDOW_MS",
"T3CODE_OTLP_TRACES_URL",
"T3CODE_OTLP_METRICS_URL",
"T3CODE_OTLP_EXPORT_INTERVAL_MS",
"T3CODE_OTLP_SERVICE_NAME"
],
"globalPassThroughEnv": [
"PATHEXT",
"GC_API_URL",
"GC_BEADS_BACKEND",
"GC_BIN",
"GC_CITY",
"GC_CITY_PATH",
"GC_WORKTREES_DIR",
"BD_BIN",
"BEADS_BACKEND",
"BR_BIN",
"T3CODE_DOLTLITE_BUILD_DIR",
"DOLTLITE_BUILD_DIR",
"T3CODE_DOLTLITE_SOURCE_DIR",
"DOLTLITE_SOURCE_DIR",
"T3CODE_BEADS_DOLTLITE_SOURCE_DIR",
"BEADS_DOLTLITE_SOURCE_DIR",
"T3CODE_GASCITY_SOURCE_DIR",
"GASCITY_SOURCE_DIR"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["bin/**", "build/**", "dist/**", "dist-electron/**"]
},
"dev": {
"dependsOn": ["@t3tools/contracts#build"],
"cache": false,
"persistent": true
},
"typecheck": {
"dependsOn": ["^typecheck"],
"outputs": [],
"cache": false
},
"test": {
"dependsOn": ["^build"],
"cache": false,
"outputs": []
}
}
}