forked from expo/expo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
50 lines (50 loc) · 984 Bytes
/
Copy pathturbo.json
File metadata and controls
50 lines (50 loc) · 984 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"$schema": "https://turborepo.dev/schema.json",
"dangerouslyDisablePackageManagerCheck": true,
"noUpdateNotifier": true,
"concurrency": "90%",
"tasks": {
"build": {
"outputs": [
"build/**",
"plugin/build/**",
"cli/build/**",
"utils/build/**"
],
"outputLogs": "new-only",
"dependsOn": [
"^build"
]
},
"typecheck": {
"outputs": [
".tsbuildinfo",
"*/.tsbuildinfo"
],
"outputLogs": "new-only"
},
"depscheck": {
"inputs": [
"package.json",
"src/**",
"plugin/src/**",
"cli/src/**",
"utils/src/**"
],
"outputLogs": "errors-only"
},
"lint": {
"cache": false
},
"test": {
"cache": false,
"outputLogs": "errors-only"
}
},
"remoteCache": {
"preflight": true,
"apiUrl": "https://turbo.exp.host",
"teamId": "team_expo",
"teamSlug": "expo"
}
}