-
Notifications
You must be signed in to change notification settings - Fork 4
/
turbo.json
50 lines (50 loc) · 1007 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
47
48
49
50
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"ui": "tui",
"tasks": {
"topo": {
"dependsOn": ["^topo"]
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**", "storybook-static/**"]
},
"start": {},
"lint": {
"dependsOn": ["^topo"],
"outputs": [".cache/.eslintcache"]
},
"lint:fix": {
"dependsOn": ["^topo"],
"outputs": [".cache/.eslintcache"]
},
"type-check": {
"dependsOn": ["^topo"],
"outputs": [".cache/tsbuildinfo.json"]
},
"dev": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
},
"format": {
"outputs": [".cache/.prettiercache"],
"outputLogs": "new-only"
},
"format:fix": {
"outputs": [".cache/.prettiercache"],
"outputLogs": "new-only"
},
"test": {
"dependsOn": ["^topo"],
"outputs": [".cache/.vitestcache"]
},
"test-run": {
"dependsOn": ["^topo"],
"outputs": [".cache/.vitestcache"]
}
}
}