-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
47 lines (47 loc) · 1.13 KB
/
Copy pathturbo.json
File metadata and controls
47 lines (47 loc) · 1.13 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
{
"$schema": "https://v2-9-18.turborepo.dev/schema.json",
"ui": "stream",
"globalDependencies": ["tsconfig.json", "biome.json", "pnpm-workspace.yaml", "pnpm-lock.yaml", "scripts/**"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["src/**", "tsconfig*.json", "build.mjs", "package.json", "package.override.json"],
"outputs": ["dist/**", "build/**", ".npm-pkg/**"]
},
"test": {
"dependsOn": ["^build", "build"],
"inputs": [
"src/**",
"test/**",
"tests/**",
"vitest.config.ts",
"vitest.setup.ts",
"../shadow-objects/vitest.setup.ts",
"package.json"
],
"outputs": []
},
"typecheck": {
"dependsOn": ["^build"],
"inputs": ["src/**", "tsconfig*.json"],
"outputs": []
},
"dev": {
"cache": false,
"persistent": true,
"dependsOn": ["^build"]
},
"watch": {
"cache": false,
"persistent": true,
"dependsOn": ["^build"]
},
"clean": {
"cache": false
},
"publishNpmPkg": {
"dependsOn": ["^build", "build"],
"cache": false
}
}
}