-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
turbo.json
50 lines (50 loc) · 1.05 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["db:generate", "^build"],
"inputs": ["src/**/*.ts"],
"outputs": ["dist/**"]
},
"clean": {
"cache": false
},
"db:generate": {
"cache": false,
"env": ["POSTGRES_URL"]
},
"db:push": {
"cache": false,
"env": ["POSTGRES_URL"]
},
"dev": {
"cache": false,
"dependsOn": ["db:generate", "^build"]
},
"lint": {
"inputs": ["src/**/*.ts", "tests/**/*.ts"]
},
"lint:fix": {
"inputs": ["src/**/*.ts", "tests/**/*.ts"]
},
"start": {
"cache": false,
"persistent": true
},
"test": {
"inputs": ["src/**/*.ts", "tests/**/*.ts"]
},
"test:ci": {
"inputs": ["src/**/*.ts", "tests/**/*.ts"],
"outputs": ["coverage/**"]
},
"test:watch": {
"cache": false,
"inputs": ["src/**/*.ts", "tests/**/*.ts"],
"persistent": true
},
"typecheck": {
"inputs": ["src/**/*.ts", "tests/**/*.ts"]
}
}
}