forked from crackedstudio/tikka
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
31 lines (31 loc) · 877 Bytes
/
Copy pathturbo.json
File metadata and controls
31 lines (31 loc) · 877 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://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["src/**", "tsconfig*.json", "nest-cli.json", "vite.config.*", "package.json"],
"outputs": ["dist/**"]
},
"lint": {
"inputs": ["src/**", "*.config.*", "eslint.config.*", "package.json"],
"outputs": []
},
"test": {
"dependsOn": ["^build"],
"inputs": ["src/**", "test/**", "tests/**", "jest.config.*", "vitest.config.*", "package.json"],
"outputs": ["coverage/**"],
"env": ["NODE_ENV"]
},
"typecheck": {
"dependsOn": ["^build"],
"inputs": ["src/**", "tsconfig*.json", "package.json"],
"outputs": []
},
"docs": {
"dependsOn": ["build"],
"inputs": ["src/**", "typedoc.json", "package.json"],
"outputs": ["docs/api/**"]
}
}
}