-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathturbo.json
More file actions
29 lines (29 loc) · 708 Bytes
/
turbo.json
File metadata and controls
29 lines (29 loc) · 708 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://turborepo.org/schema.json",
"baseBranch": "origin/master",
"pipeline": {
"@nicepkg/vr360-core#build": {
"dependsOn": ["@nicepkg/vr360-shared#build"],
"inputs": ["src/**", "scripts/**", "types/**"],
"outputs": ["dist/**"]
},
"doc-site#build": {
"dependsOn": ["^build"],
"inputs": ["./**"],
"outputs": ["./.vuepress/dist/**"]
},
"build": {
"dependsOn": ["^build"],
"inputs": ["src/**", "scripts/**", "types/**"],
"outputs": ["dist/**"]
},
"test": {
"dependsOn": ["build"],
"outputs": []
},
"dev": {
"cache": false
}
},
"globalDependencies": ["tsconfig-base.json"]
}