-
Notifications
You must be signed in to change notification settings - Fork 2
/
turbo.json
43 lines (43 loc) · 947 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
{
"$schema": "https://turborepo.org/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["lib/**", ".next/**"],
"inputs": ["src/**/*.ts", "index.ts"]
},
"lint": {
"dependsOn": ["^build"]
},
"lint:fix": {
"dependsOn": ["^build"]
},
"prettier": {
"dependsOn": ["^prettier"]
},
"prettier:fix": {
"dependsOn": ["^prettier:fix"]
},
"dev": {
"cache": false,
"persistent": true
},
"test": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"],
"inputs": ["src/**/*.ts", "tests/**/*.ts"]
},
"test:coverage": {
"dependsOn": ["^build"],
"outputs": [],
"inputs": ["src/**/*.ts", "tests/**/*.ts"]
},
"typecheck": {
"dependsOn": ["^build", "^typecheck"]
},
"health-check": {
"dependsOn": ["build", "prettier", "lint", "typecheck"]
}
}
}