-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
37 lines (37 loc) 路 864 Bytes
/
Copy pathturbo.json
File metadata and controls
37 lines (37 loc) 路 864 Bytes
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
{
"$schema": "https://turborepo.com/schema.json",
"ui": "stream",
"globalDependencies": [
"package.json",
"scripts/**",
"README.md",
"CONTEXT.md",
"docs/**",
"skills/**",
"bench/**"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["src/**", "scripts/**", "bin/**", "tsconfig.json", "package.json"],
"outputs": ["dist/**", "src/report/version.generated.ts"]
},
"test": {
"dependsOn": ["^build"],
"inputs": ["src/**", "test/**", "vitest.config.ts", "tsconfig.json", "package.json"],
"outputs": []
},
"typecheck": {
"dependsOn": ["^build"],
"inputs": ["src/**", "test/**", "tsconfig.json", "package.json"],
"outputs": []
},
"clean": {
"cache": false
},
"dev": {
"cache": false,
"persistent": true
}
}
}