-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathturbo.json
More file actions
46 lines (46 loc) · 1.62 KB
/
turbo.json
File metadata and controls
46 lines (46 loc) · 1.62 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
{
"$schema": "./node_modules/turbo/schema.json",
"ui": "tui",
"tasks": {
"transit": {
"dependsOn": ["^transit"],
"outputs": []
},
"dev": {
"cache": false,
"persistent": true
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"lint": {
"dependsOn": ["eslint", "//#eslint", "typecheck", "//#typecheck", "//#syncpack"]
},
"//#eslint": {
"inputs": ["$TURBO_DEFAULT$", "!packages", "!samples", "!docs", "!README.md", "!CONTRIBUTING.md"],
"outputs": ["node_modules/.cache/eslint"]
},
"eslint": {
"dependsOn": ["transit"],
"inputs": ["$TURBO_DEFAULT$", "!README.md"],
"outputs": ["node_modules/.cache/eslint"]
},
"//#typecheck": {
"inputs": ["src/**/*.ts", "src/**/*.tsx", "test/**/*.ts", "test/**/*.tsx", "tsconfig.json", "!packages", "!samples", "!docs"],
"outputs": ["node_modules/.cache/tsbuildinfo.json"]
},
"typecheck": {
"dependsOn": ["transit"],
"inputs": ["src/**/*.ts", "src/**/*.tsx", "test/**/*.ts", "test/**/*.tsx", "tsconfig.json", "tsconfig.build.json"],
"outputs": ["node_modules/.cache/tsbuildinfo.json"]
},
"//#syncpack": {
"inputs": [".syncpackrc.js", "package.json", "packages/**/package.json", "samples/**/package.json"]
},
"test": {
"dependsOn": ["transit"],
"outputs": ["node_modules/.cache/vitest/**"]
}
}
}