-
Notifications
You must be signed in to change notification settings - Fork 17
/
turbo.json
80 lines (80 loc) · 1.65 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [".env", "tsconfig.json"],
"globalEnv": [
"DOCKER",
"NODE_ENV",
"PUBLIC_PROXY_URL",
"CDN_PATH",
"PORT",
"SESSION_SECRET",
"POSTGRES_DB",
"POSTGRES_HOST",
"POSTGRES_PORT",
"POSTGRES_USER",
"POSTGRES_PASSWORD",
"REDIS_HOST",
"REDIS_PORT",
"REDIS_PASSWORD",
"REDIS_USERNAME",
"SYNC_PATH",
"DATA_REPOSITORY_URL",
"DATA_REPOSITORY_BRANCH",
"PRIVATE_DATA_REPOSITORY_URL",
"PRIVATE_DATA_REPOSITORY_BRANCH",
"GITHUB_ACCESS_TOKEN",
"DOMAIN",
"DOMAIN_URL",
"SENDGRID_ENABLE",
"SENDGRID_KEY",
"SENDGRID_EMAIL",
"SENDGRID_EMAIL_CHANGE_TEMPLATE_ID",
"SENDGRID_RESET_PASSWORD_TEMPLATE_ID",
"SBP_API_KEY",
"S3_ACCESS_KEY",
"S3_SECRET_KEY",
"S3_BUCKET",
"S3_REGION",
"S3_ENDPOINT",
"OTS_PGP_KEY_PATH",
"OTS_PGP_KEY_PASSPHRASE",
"OTS_RPC_URL",
"OTS_RPC_USER",
"OTS_RPC_PASSWORD"
],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"],
"inputs": ["$TURBO_DEFAULT$", ".env"]
},
"type-check": {
"dependsOn": ["^type-check"]
},
"check-types": {},
"build-types": {},
"generate-types": {},
"trace-performance": {
"cache": false
},
"clear": {
"dependsOn": ["^clear"],
"cache": false
},
"test": {
"dependsOn": ["build"],
"inputs": [
"src/**/*.tsx",
"src/**/*.ts",
"src/**/*.test.ts",
"test/**/*.ts",
"test/**/*.tsx"
]
},
"lint": {},
"dev": {
"cache": false,
"persistent": true
}
}
}