forked from youngkidwarrior/sendapp
-
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) · 745 Bytes
/
turbo.json
File metadata and controls
27 lines (27 loc) · 745 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",
"globalEnv": ["DISABLE_EXTRACTION", "NODE_ENV", "EAS_BUILD_PLATFORM", "NEXT_*"],
"globalDependencies": ["**/.env.*local", "tsconfig*", "turbo.json"],
"tasks": {
"build": {
"env": ["DISABLE_EXTRACTION", "NODE_ENV", "EAS_BUILD_PLATFORM", "NEXT_*", "SUPABASE*"],
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "dist/**", "out/**", "build/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"//#biome:check": {},
"//#biome:check:fix": {},
"lint": {
"dependsOn": ["^//#biome:check"]
},
"lint:fix": {
"dependsOn": ["^//#biome:check:fix"]
},
"clean": {
"cache": false
}
}
}