-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathturbo.json
More file actions
49 lines (49 loc) · 1.04 KB
/
turbo.json
File metadata and controls
49 lines (49 loc) · 1.04 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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"globalEnv": ["SUPABASE_*", "NUXT_PUBLIC_*", "OPENAI_API_KEY"],
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".output/**", ".nuxt/**", "dist/**"],
"cache": true
},
"dev": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
},
"generate": {
"dependsOn": ["^build"],
"outputs": [".output/**", "dist/**"],
"cache": true
},
"analyze": {
"cache": false
},
"create": {
"cache": false
},
"preview": {
"dependsOn": ["build"],
"cache": false
},
"start": {
"dependsOn": ["build"],
"cache": false
},
"check-types": {
"dependsOn": ["^check-types"],
"cache": false
},
"format": {
"outputs": ["**/*.{ts,tsx,md,vue,js,jsx,json}"],
"cache": false
},
"format:write": {
"outputs": ["**/*.{ts,tsx,md,vue,js,jsx,json}"],
"cache": false
}
}
}