-
Notifications
You must be signed in to change notification settings - Fork 87
/
turbo.json
46 lines (46 loc) · 978 Bytes
/
turbo.json
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
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": ["NODE_ENV", "IS_PREVIEW"],
"pipeline": {
"ts:check": {
"outputs": ["app-portal/**/*.typegen.ts"],
"cache": false,
"dependsOn": ["build:lib"]
},
"build:lib": {
"outputs": ["dist/**", "build/**", ".next/**"],
"cache": false
},
"build:preview": {
"outputs": [
"dist/**",
"build/**",
".next/**",
"app-explorer/public/ui/**",
"app-explorer/public/storybook/**"
],
"dependsOn": ["^ts:check"],
"cache": false
},
"test": {
"outputs": ["**/**/report.json", "coverage/**"],
"dependsOn": [],
"outputMode": "full"
},
"dev": {
"dependsOn": ["^ts:check"],
"cache": false
},
"dev:storybook": {
"dependsOn": [],
"cache": false
},
"lint": {
"dependsOn": [],
"cache": true
},
"start": {
"cache": false
}
}
}