-
-
Notifications
You must be signed in to change notification settings - Fork 180
Expand file tree
/
Copy pathturbo.json
More file actions
29 lines (29 loc) · 656 Bytes
/
turbo.json
File metadata and controls
29 lines (29 loc) · 656 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
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"generate": {
"dependsOn": ["^build"],
"outputs": [
"prisma/client/**",
"prisma/generated.d.ts",
"tests/client/**",
"tests/generated.d.ts",
"test/client/**",
"test/generated.d.ts",
"components/__generated__/**"
]
},
"build": {
"dependsOn": ["generate", "^build"],
"outputs": ["dts/**", "lib/**", "esm/**", ".next"]
},
"type": {
"dependsOn": ["generate", "^build"],
"outputs": []
},
"test": {
"dependsOn": ["generate", "^build"],
"outputs": []
}
}
}