-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
105 lines (105 loc) · 1.97 KB
/
turbo.json
File metadata and controls
105 lines (105 loc) · 1.97 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"$schema": "https://turborepo.com/schema.json",
"globalDependencies": [
"pnpm-workspace.yaml",
"pnpm-lock.yaml",
"package.json",
".npmrc"
],
"globalEnv": [
"NODE_ENV",
"CI"
],
"globalPassThroughEnv": [
"NODE_ENV",
"CI",
"TURBO_TOKEN",
"TURBO_TEAM"
],
"ui": "stream",
"daemon": false,
"boundaries": {
"implicitDependencies": [
"@truenine/eslint10-config"
]
},
"tasks": {
"lint": {
"dependsOn": [
"^build"
],
"inputs": [
"src/**/*.{ts,js,vue,tsx,jsx}",
"eslint.config.*",
"package.json"
],
"outputs": [],
"cache": true,
"persistent": false
},
"lint:fix": {
"dependsOn": [
"^build"
],
"inputs": [
"src/**/*.{ts,js,vue,tsx,jsx}",
"eslint.config.*",
"package.json"
],
"outputs": [],
"cache": true,
"persistent": false
},
"typecheck": {
"dependsOn": [
"^build"
],
"inputs": [
"src/**/*.{ts,vue,tsx}",
"tsconfig*.json",
"package.json"
],
"outputs": [
"**/*.tsbuildinfo"
],
"cache": true,
"persistent": false
},
"test": {
"dependsOn": [],
"inputs": [
"src/**/*.{ts,js,vue,tsx,jsx}",
"test/**/*.{ts,js,vue,tsx,jsx}",
"tsconfig*.json",
"vite*.config.*",
"vitest*.config.*",
"package.json"
],
"outputs": [
"coverage/**",
"test-results/**"
],
"cache": true,
"persistent": false
},
"build": {
"dependsOn": [
"^build",
"typecheck"
],
"inputs": [
"src/**/*.{ts,js,vue,tsx,jsx,css,scss,sass}",
"package.json",
"tsconfig*.json",
"vite*.config.*",
"uno*.config.*",
"tsdown*.config.*"
],
"outputs": [
"dist/**"
],
"cache": true,
"persistent": false
}
}
}