-
-
Notifications
You must be signed in to change notification settings - Fork 633
Expand file tree
/
Copy pathturbo.json
More file actions
49 lines (49 loc) · 1.12 KB
/
turbo.json
File metadata and controls
49 lines (49 loc) · 1.12 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",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["src/**", "tsconfig*.json", "package.json", "vite.config.*", "tsup.config.*"],
"env": ["VITE_*"]
},
"@insforge/backend#build": {
"outputs": ["../dist/server.js", "../dist/server.js.map"]
},
"frontend#build": {
"dependsOn": [],
"outputs": ["../dist/frontend/**"]
},
"@insforge/ui#build": {
"outputs": ["dist/**"]
},
"@insforge/dashboard#build": {
"outputs": ["dist/**"]
},
"@insforge/shared-schemas#build": {
"outputs": ["dist/**"]
},
"typecheck": {
"dependsOn": ["^build"],
"outputs": [],
"inputs": ["src/**", "tsconfig*.json", "package.json"]
},
"test": {
"dependsOn": ["^build"],
"outputs": [],
"cache": false
},
"lint": {
"outputs": [],
"inputs": ["src/**", "*.config.*", "package.json"],
"cache": false
},
"dev": {
"dependsOn": ["^build"],
"persistent": true,
"cache": false
},
"clean": {
"cache": false
}
}
}