-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
59 lines (59 loc) · 1.35 KB
/
turbo.json
File metadata and controls
59 lines (59 loc) · 1.35 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
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"_lint": {
"inputs": ["src/**/*.ts", "tests/**/*.ts", "eslint.config.ts"],
"outputs": []
},
"_typecheck": {
"inputs": ["src/**/*.ts", "tests/**/*.ts", "tsconfig.json"],
"outputs": []
},
"_compile": {
"dependsOn": ["_typecheck"],
"inputs": ["src/**/*.ts", "tsconfig.json"],
"outputs": ["dist/**"]
},
"_schema": {
"dependsOn": ["_compile"],
"inputs": ["src/**/*.ts"],
"outputs": ["schema.json"]
},
"_test": {
"dependsOn": ["_typecheck"],
"inputs": ["src/**/*.ts", "tests/**/*.ts"],
"outputs": []
},
"_test:coverage": {
"dependsOn": ["_typecheck"],
"inputs": ["src/**/*.ts", "tests/**/*.ts"],
"outputs": ["coverage/**"],
"cache": false
},
"_docs:cli": {
"inputs": [
"src/cli/**/*.ts",
"src/schema.ts",
"scripts/generate-cli-docs.ts"
],
"outputs": ["docs/cli/**"]
},
"_docs:api": {
"inputs": ["src/**/*.ts", "typedoc.json"],
"outputs": ["docs/api/**"]
},
"_docs:api:html": {
"dependsOn": ["_docs:cli"],
"inputs": ["src/**/*.ts", "typedoc.html.json", "docs/cli/**"],
"outputs": ["site/**"]
},
"_build": {
"dependsOn": ["_compile", "_schema", "_docs:cli", "_docs:api"],
"outputs": []
},
"_validate": {
"dependsOn": ["_lint", "_typecheck", "_build", "_test"],
"outputs": []
}
}
}