-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
60 lines (60 loc) · 1.29 KB
/
Copy pathturbo.json
File metadata and controls
60 lines (60 loc) · 1.29 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
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"globalEnv": [
"DATABASE_URL",
"SESSION_SECRET",
"JWT_SECRET",
"ENCRYPTION_KEY",
"STAGING_URL",
"BASE_URL"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["**/*.ts", "**/*.tsx", "**/*.css", "package.json", "tsconfig.json"],
"outputs": ["dist/**", "build/**"],
"passThroughEnv": [
"NODE_ENV",
"PORT",
"DATABASE_URL",
"DATABASE_URL_UNPOOLED",
"UPSTASH_REDIS_REST_URL",
"UPSTASH_REDIS_REST_TOKEN",
"GOOGLE_CLIENT_ID",
"GOOGLE_CLIENT_SECRET",
"SESSION_SECRET",
"ENABLE_MOCK_ADMIN",
"E2E_BASE_URL",
"TEST_REAL_DB"
]
},
"test": {
"dependsOn": ["build"],
"inputs": [
"app/**/*.tsx",
"app/**/*.ts",
"server/**/*.ts",
"shared/**/*.ts",
"tests/**/*.ts"
],
"outputs": ["coverage/**"]
},
"lint": {
"inputs": ["**/*.ts", "**/*.tsx", "biome.json"]
},
"typecheck": {
"inputs": ["**/*.ts", "**/*.tsx", "tsconfig.json"]
},
"check": {
"dependsOn": ["^build"]
},
"dev": {
"cache": false,
"persistent": true
},
"db:push": {
"cache": false
}
}
}