-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
49 lines (49 loc) · 1.08 KB
/
Copy pathturbo.json
File metadata and controls
49 lines (49 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
49
{
"$schema": "https://turborepo.dev/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["src/**", "tsdown.config.ts", "tsconfig.json", "package.json"],
"outputs": ["dist/**"]
},
"test": {
"dependsOn": ["build"],
"inputs": ["src/**", "tests/unit/**", "vitest.config.*", "package.json"],
"outputs": []
},
"test:e2e": {
"dependsOn": ["build"],
"inputs": ["tests/e2e/**", "playwright.config.*", "package.json"],
"outputs": [],
"cache": false
},
"lint": {
"inputs": ["src/**", "tests/**", "biome.json"],
"outputs": []
},
"validate": {
"dependsOn": ["build"],
"inputs": ["dist/**", "package.json"],
"outputs": []
},
"size": {
"dependsOn": ["build"],
"inputs": ["dist/**", "package.json"],
"outputs": []
},
"typecheck": {
"inputs": ["src/**", "tsconfig.json", "tsconfig.node.json"],
"outputs": []
},
"bench": {
"dependsOn": ["^build"],
"inputs": ["src/**", "vitest.config.*", "package.json"],
"outputs": [],
"cache": false
},
"dev": {
"cache": false,
"persistent": true
}
}
}