-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
36 lines (36 loc) · 978 Bytes
/
turbo.json
File metadata and controls
36 lines (36 loc) · 978 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
{
"$schema": "https://turborepo.org/schema.json",
"globalDependencies": ["tsconfig.json", "package.json", "build.ts"],
"pipeline": {
"format": {
"outputs": []
},
"typecheck": {
"outputs": ["dist/**"]
},
"lint": {
"dependsOn": ["typecheck", "format"],
"outputs": []
},
"build": {
"dependsOn": ["^build", "typecheck", "format", "lint"],
"outputs": ["dist/**"]
},
"@stellaraf/cacheutil-redis#build": {
"dependsOn": ["@stellaraf/cacheutil-core#build"],
"outputs": ["dist/**"]
},
"@stellaraf/cacheutil-cloudflare-kv#build": {
"dependsOn": ["@stellaraf/cacheutil-core#build"],
"outputs": ["dist/**"]
},
"@stellaraf/cacheutil-cache#build": {
"dependsOn": ["@stellaraf/cacheutil-redis#build", "@stellaraf/cacheutil-cloudflare-kv#build"],
"outputs": ["dist/**"]
},
"test": {
"dependsOn": ["build"],
"inputs": ["src/**/*.ts"]
}
}
}