forked from PoskOfficial/Miti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
46 lines (46 loc) · 811 Bytes
/
turbo.json
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
{
"$schema": "https://turborepo.org/schema.json",
"globalEnv": [
"DISABLE_EXTRACTION",
"NODE_ENV",
"EAS_BUILD_PLATFORM"
],
"tasks": {
"build": {
"env": [
"DISABLE_EXTRACTION",
"NODE_ENV",
"EAS_BUILD_PLATFORM"
],
"dependsOn": [
"^build"
],
"outputs": [
".next/**",
"!.next/cache/**",
"build/**",
"node_modules/.cache/metro/**"
]
},
"lint": {
"dependsOn": [
"^lint"
],
"outputs": [
"node_modules/.cache/.eslintcache"
]
},
"format": {
"dependsOn": [
"^format"
],
"outputs": [
"node_modules/.cache/.prettiercache"
]
},
"dev": {
"cache": false,
"persistent": true
}
}
}