forked from l2beat/l2beat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
32 lines (32 loc) · 798 Bytes
/
turbo.json
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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["tsconfig.json"],
"tasks": {
"build": {
"dependsOn": ["^build", "db:generate-types"],
"outputs": ["build/**", ".next/**", "!.next/cache/**", "dist/**"]
},
"db:generate-types": {
"outputs": ["src/kysely/generated/**"]
},
"typecheck": {
"dependsOn": ["^build", "db:generate-types"],
"inputs": ["**/*.ts", "**/*.tsx"]
},
"test": {
"dependsOn": ["^build", "db:generate-types"],
"inputs": ["**/*.ts", "**/*.test.ts", "**/*.json", "**/*.jsonc"]
},
"lint": {
"dependsOn": ["^build", "db:generate-types"]
},
"format": {},
"clean": {
"cache": false
},
"dev": {
"cache": false,
"persistent": true
}
}
}