-
Notifications
You must be signed in to change notification settings - Fork 6
/
turbo.json
38 lines (38 loc) · 894 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
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"transit": {
"dependsOn": ["^transit"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"typecheck": {
"dependsOn": ["transit", "build"],
"outputs": ["node_modules/.cache/tsbuildinfo.json"]
},
"lint": {
"dependsOn": ["transit"]
},
"//#check-formatting": {
"outputs": ["node_modules/.cache/.prettiercache"]
},
"check-formatting": {
"dependsOn": ["transit"],
"outputs": ["node_modules/.cache/.prettiercache"]
},
"//#format": {
"outputs": ["node_modules/.cache/.prettiercache"],
"cache": false
},
"format": {
"dependsOn": ["transit"],
"outputs": ["node_modules/.cache/.prettiercache"],
"cache": false
},
"test": {
"dependsOn": ["transit", "build"]
}
}
}