-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathturbo.json
More file actions
49 lines (49 loc) · 1.07 KB
/
Copy pathturbo.json
File metadata and controls
49 lines (49 loc) · 1.07 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
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"PORT",
"VITE_WS_URL",
"VITE_DEV_SERVER_URL",
"ELECTRON_RENDERER_PORT",
"T3CODE_LOG_WS_EVENTS",
"T3CODE_MODE",
"T3CODE_PORT",
"T3CODE_NO_BROWSER",
"T3CODE_HOME",
"T3CODE_CONFIG_HOME",
"T3CODE_AUTH_TOKEN",
"T3CODE_HOST",
"T3CODE_DESKTOP_WS_URL",
"T3CODE_TUI_ATTACH_ONLY",
"T3CODE_HEADLESS",
"T3CODE_HEADLESS_FRAME_PATH",
"T3CODE_HEADLESS_TIMEOUT_MS",
"T3CODE_HEADLESS_WIDTH",
"T3CODE_HEADLESS_HEIGHT",
"APP_VERSION",
"VITE_HOSTED_APP_URL",
"VITE_HOSTED_APP_CHANNEL"
],
"globalPassThroughEnv": ["PATHEXT"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "dist-electron/**"]
},
"dev": {
"dependsOn": ["@t3tools/contracts#build"],
"cache": false,
"persistent": true
},
"typecheck": {
"dependsOn": ["^typecheck"],
"outputs": [],
"cache": false
},
"test": {
"dependsOn": ["^build"],
"cache": false,
"outputs": []
}
}
}