-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathturbo.json
More file actions
37 lines (37 loc) · 837 Bytes
/
turbo.json
File metadata and controls
37 lines (37 loc) · 837 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
{
"$schema": "https://turborepo.com/schema.json",
"ui": "stream",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"],
"cache": true
},
"lint": {
"dependsOn": ["^build", "^lint"],
"outputs": []
},
"check": {
"dependsOn": ["^build", "^lint", "^check-types", "^test"],
"outputs": []
},
"check-types": {
"dependsOn": ["^build", "^check-types"],
"outputs": []
},
"test": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"]
},
"e2e": {
"dependsOn": ["^build"],
"cache": false,
"outputs": ["playwright-report/**", "test-results/**"]
},
"dev": {
"cache": false,
"persistent": true
}
}
}