forked from better-auth/better-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
45 lines (45 loc) · 684 Bytes
/
turbo.json
File metadata and controls
45 lines (45 loc) · 684 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
{
"$schema": "https://turborepo.org/schema.json",
"tasks": {
"dev": {
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/*"],
"env": [
"TURSO_DATABASE_URL",
"TURSO_AUTH_TOKEN",
"RESEND_API_KEY",
"BETTER_AUTH_EMAIL"
]
},
"clean": {},
"format": {
"dependsOn": ["//#format"]
},
"//#format": {},
"lint": {},
"knip": {
"cache": true
},
"test": {
"dependsOn": ["build"],
"outputs": []
},
"typecheck": {
"outputs": [],
"cache": true
},
"deploy": {
"cache": false
},
"migrate": {
"cache": false
},
"generate": {
"cache": false
}
}
}