-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathturbo.json
49 lines (49 loc) · 931 Bytes
/
turbo.json
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.org/schema.json",
"baseBranch": "origin/main",
"pipeline": {
"typescript": {
"dependsOn": ["^typescript"],
"outputs": ["dist/**"]
},
"build": {
"dependsOn": ["^typescript"],
"outputs": ["dist/**"]
},
"build-github": {
"dependsOn": ["^typescript"],
"outputs": ["dist/**"]
},
"bundle": {
"dependsOn": ["^typescript"],
"outputs": ["dist/**"]
},
"lint:eslint": {
"dependsOn": ["typescript"],
"outputs": []
},
"lint:prettier": {
"dependsOn": [],
"outputs": []
},
"lint:stylelint": {
"dependsOn": [],
"outputs": []
},
"test": {
"dependsOn": ["___ROOT___#test-esm"],
"outputs": []
},
"no-cache-task --no-cache": {
"cache": false
}
},
"globalDependencies": [
"tsconfig.json",
"vitest.config.js",
"./eslint-plugin-import-resolver.cjs",
"./.eslintrc.cjs",
"./.prettierrc.cjs",
"./.stylelintrc.json"
]
}