-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathturbo.json
More file actions
66 lines (66 loc) · 1.53 KB
/
turbo.json
File metadata and controls
66 lines (66 loc) · 1.53 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"$schema": "https://turbo.build/schema.json",
"ui": "stream",
"remoteCache": {
"teamSlug": "azsdkjs",
"teamId": "azsdkjs",
"enabled": true,
// Reach out to netiso@microsoft.com before changing apiUrl and loginUrl to ensure pipelines will continue to run.
"apiUrl": "https://turborepo-remote-cache-vnet.whitesky-6b33c444.westus2.azurecontainerapps.io",
"loginUrl": "https://turborepo-remote-cache-vnet.whitesky-6b33c444.westus2.azurecontainerapps.io"
},
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": [
"$TURBO_DEFAULT$",
"$TURBO_ROOT$/api-extractor-base.json",
"$TURBO_ROOT$/tsconfig.json",
"$TURBO_ROOT$/tsconfig.src.build.json",
"!review/*.api.md",
"!CHANGELOG.md",
"!LICENSE",
"!README.md"
],
"outputs": ["dist/**", "review/*", "temp/*", "dist-esm/**", "dist-test/**", "types/**"]
},
"build:samples": {
"cache": false
},
"check-format": {
"cache": false
},
"clean": {
"cache": false
},
"format": {
"cache": false
},
"lint": {
"cache": false
},
"lint:fix": {
"cache": false
},
"pack": {
"dependsOn": ["build"],
"cache": false
},
"test": {
"dependsOn": ["build"]
},
"test:browser": {
"dependsOn": ["build"]
},
"test:node": {
"dependsOn": ["build"]
},
"update-snippets": {
"cache": false
},
"dev": {
"cache": true,
"persistent": true
}
}
}