-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathturbo.json
More file actions
48 lines (48 loc) · 1.21 KB
/
turbo.json
File metadata and controls
48 lines (48 loc) · 1.21 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
{
"$schema": "https://turborepo.org/schema.json",
"ui": "tui",
"tasks": {
"topo": {
"dependsOn": ["^topo"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "storybook-static/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"dev-ts": {
"cache": false,
"persistent": true,
"passThroughEnv": ["*"]
},
"lint": {
"dependsOn": ["^topo", "^build"],
"outputs": [".cache/.eslintcache"]
},
"test": {
"dependsOn": ["build"]
}
},
"globalEnv": [
"NEXT_PUBLIC_INSTILL_AI_SCHEDULE_MEETING_LINK",
"NEXT_PUBLIC_GENERAL_API_VERSION",
"NEXT_PUBLIC_MODEL_API_VERSION",
"NODE_ENV",
"NEXT_PUBLIC_API_GATEWAY_URL",
"NEXT_SERVER_API_GATEWAY_URL",
"NEXT_PUBLIC_CONSOLE_BASE_URL",
"INSTILL_API_VERSION",
"INTEGRATION_GOOGLE_DRIVE_CLIENT_ID",
"INTEGRATION_GOOGLE_DRIVE_CLIENT_SECRET",
"INTEGRATION_GOOGLE_SHEETS_CLIENT_ID",
"INTEGRATION_GOOGLE_SHEETS_CLIENT_SECRET",
"INTEGRATION_GITHUB_CLIENT_ID",
"INTEGRATION_GITHUB_CLIENT_SECRET",
"INTEGRATION_SLACK_CLIENT_ID",
"INTEGRATION_SLACK_CLIENT_SECRET",
"NEXT_PUBLIC_APPLICATION_API_VERSION"
]
}