forked from solana-labs/solana-program-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
28 lines (28 loc) · 686 Bytes
/
turbo.json
File metadata and controls
28 lines (28 loc) · 686 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
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "lib/**"]
},
"build:program": {
"dependsOn": ["^build:program"]
},
"clean": {},
"lint:fix": {
"inputs": ["tsconfig*.json", "src/**", "test/**"],
"outputs": []
},
"lint": {
"inputs": ["tsconfig*.json", "src/**", "test/**"],
"outputs": []
},
"test": {
"inputs": ["src/**", "test/**"],
"outputs": []
}
},
"remoteCache": {
"signature": true
}
}