-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
56 lines (56 loc) · 953 Bytes
/
turbo.json
File metadata and controls
56 lines (56 loc) · 953 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"cache": false,
"dependsOn": [
"^build"
],
"inputs": [
"$TURBO_DEFAULT$",
".env*"
],
"outputs": [
".next/**",
"!.next/cache/**"
]
},
"lint": {
"dependsOn": [
"^lint"
]
},
"lint:fix": {
"cache": false,
"dependsOn": [
"^lint:fix"
]
},
"check-types": {
"dependsOn": [
"^check-types"
]
},
"format": {
"cache": false,
"dependsOn": [
"^format"
]
}
},
"globalEnv": [
"UNIFORM_API_KEY",
"UNIFORM_CLI_BASE_URL",
"UNIFORM_PROJECT_ID",
"UNIFORM_PREVIEW_SECRET",
"UNIFORM_CLI_BASE_EDGE_URL",
"NODE_ENV",
"INTEGRATION_URL",
"STYLES_PATH",
"CONFIG_PATH",
"DEV_MODE",
"CUSTOM_CANVAS_FOLDER_PATH",
"BASE_URL"
]
}