-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
77 lines (77 loc) · 2.21 KB
/
turbo.json
File metadata and controls
77 lines (77 loc) · 2.21 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"$schema": "https://turborepo.org/schema.json",
"remoteCache": {
"signature": true
},
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**/*", "tsconfig.build.tsbuildinfo"]
},
"cleanup": {
"cache": false
},
"docs": {
"dependsOn": ["^build"],
"outputs": ["docs/**/*"]
},
"lint": {
"dependsOn": ["@apitree.cz/eslint-config#build", "^build"],
"inputs": ["$TURBO_DEFAULT$", "../../eslint.config.js"],
"outputs": [".eslintcache"]
},
"lint:fix": {
"dependsOn": ["@apitree.cz/eslint-config#build", "^build"],
"inputs": ["$TURBO_DEFAULT$", "../../eslint.config.js"],
"outputs": [".eslintcache"]
},
"//#lint:root": {
"dependsOn": ["@apitree.cz/eslint-config#build", "^build"],
"outputs": [".eslintcache"]
},
"//#lint:root:fix": {
"dependsOn": ["@apitree.cz/eslint-config#build", "^build"],
"outputs": [".eslintcache"]
},
"format": {
"dependsOn": ["@apitree.cz/prettier-config#build", "^build"],
"inputs": ["$TURBO_DEFAULT$", "../../prettier.config.js"],
"outputs": []
},
"format:fix": {
"dependsOn": ["@apitree.cz/prettier-config#build", "^build"],
"inputs": ["$TURBO_DEFAULT$", "../../prettier.config.js"],
"outputs": []
},
"//#format:root": {
"dependsOn": ["@apitree.cz/prettier-config#build", "^build"],
"outputs": []
},
"//#format:root:fix": {
"dependsOn": ["@apitree.cz/prettier-config#build", "^build"],
"outputs": []
},
"//#sync-project-references": {
"dependsOn": ["@apitree.cz/cli#build", "^build"],
"inputs": ["packages/*/package.json"],
"outputs": ["packages/*/tsconfig.json", "packages/*/tsconfig.build.json"]
},
"test": {
"dependsOn": ["@apitree.cz/vitest-config#build", "^build"],
"outputs": []
},
"test:coverage": {
"dependsOn": ["@apitree.cz/vitest-config#build", "^build"],
"outputs": ["coverage/**/*"]
},
"ts": {
"dependsOn": ["^build"],
"outputs": ["tsconfig.tsbuildinfo"]
},
"//#ts:root": {
"dependsOn": ["^build"],
"outputs": ["tsconfig.tsbuildinfo"]
}
}
}