-
-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathturbo.json
More file actions
23 lines (23 loc) · 613 Bytes
/
turbo.json
File metadata and controls
23 lines (23 loc) · 613 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["src/**", "samples/**", "zenstack/*.zmodel"],
"outputs": ["dist/**", ".output/**"]
},
"watch": {
"dependsOn": ["^build"],
"inputs": ["src/**", "zenstack/*.zmodel"],
"outputs": []
},
"lint": {
"dependsOn": ["^lint"]
},
"test": {
"dependsOn": ["build"],
"cache": false
}
},
"globalPassThroughEnv": ["TEST_DB_PROVIDER"]
}