-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathturbo.json
More file actions
24 lines (24 loc) · 718 Bytes
/
turbo.json
File metadata and controls
24 lines (24 loc) · 718 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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["tsconfig.json"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["src/**", "scripts/**", "package.json", "tsconfig.json", "app/**"],
"outputs": ["dist/**", ".next/**"],
"outputLogs": "full"
},
"test": {
"dependsOn": ["^build"],
"inputs": ["__tests__/**", "src/**", "vitest.config.ts", "package.json", "tsconfig.json"],
"outputLogs": "full"
},
"lint": {
"inputs": ["../../.eslintrc.json", "../../.eslintignore", "src/**", "package.json", "tsconfig.json"],
"outputLogs": "full"
}
},
"remoteCache": {
"enabled": true
}
}