-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathturbo.json
More file actions
48 lines (48 loc) · 1.08 KB
/
Copy pathturbo.json
File metadata and controls
48 lines (48 loc) · 1.08 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
{
"$schema": "https://v2-9-7.turborepo.dev/schema.json",
"noUpdateNotifier": true,
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputLogs": "new-only",
"inputs": [
"src/**",
"tsconfig.json",
"tsdown.config.ts",
"$TURBO_ROOT$/tsdown.base.ts",
"$TURBO_ROOT$/yarn.lock"
],
"outputs": ["dist/**"]
},
"test": {
"dependsOn": ["^build", "^test"],
"outputLogs": "new-only",
"inputs": [
"src/**",
"vitest.config.ts",
"$TURBO_ROOT$/vitest.base.ts",
"$TURBO_ROOT$/yarn.lock"
]
},
"types": {
"dependsOn": ["^build", "^types"],
"outputLogs": "new-only",
"inputs": [
"src/**",
"tsconfig.json",
"tsconfig.app.json",
"$TURBO_ROOT$/tsconfig.base.json",
"$TURBO_ROOT$/tsconfig.app.json",
"$TURBO_ROOT$/yarn.lock"
]
},
"publish": {
"dependsOn": ["^build"],
"cache": false,
"outputLogs": "new-only"
}
},
"futureFlags": {
"watchUsingTaskInputs": true
}
}