-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
27 lines (27 loc) · 908 Bytes
/
Copy pathturbo.json
File metadata and controls
27 lines (27 loc) · 908 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
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": ["dist/**", ".next/**", ".source/**"]
},
"lint": { "dependsOn": ["^lint"] },
"check-types": { "dependsOn": ["^check-types"] },
"typecheck": { "dependsOn": ["^typecheck"] },
"test": { "dependsOn": ["^build"] },
"test:e2e": { "dependsOn": ["^build"] },
"dev": { "cache": false, "persistent": true },
"clean": { "cache": false },
"db:push": { "cache": false },
"db:seed": { "cache": false },
"db:generate": { "cache": false },
"db:migrate": { "cache": false, "persistent": true },
"db:studio": { "cache": false, "persistent": true },
"db:start": { "cache": false, "persistent": true },
"db:stop": { "cache": false },
"db:watch": { "cache": false, "persistent": true },
"db:down": { "cache": false }
}
}