forked from Patrick-Ehimen/lighthouse-agent-tooling
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathturbo.json
More file actions
31 lines (31 loc) · 684 Bytes
/
turbo.json
File metadata and controls
31 lines (31 loc) · 684 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
{
"$schema": "https://turborepo.com/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["build/**", "dist/**", "out/**", ".next/**", "!.next/cache/**"]
},
"type-check": {
"dependsOn": ["^type-check"]
},
"dev": {
"persistent": true,
"cache": false
},
"lint": {
"dependsOn": ["^build"]
},
"test": {
"dependsOn": ["^build"],
"outputs": ["coverage/**"]
},
"clean": {
"cache": false
},
"package": {
"dependsOn": ["build", "test"],
"outputs": ["*.vsix", "packages/**/*.vsix"]
}
},
"globalDependencies": ["tsconfig.json", "package.json"]
}