-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathturbo.json
More file actions
62 lines (62 loc) · 1.56 KB
/
turbo.json
File metadata and controls
62 lines (62 loc) · 1.56 KB
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
{
"$schema": "https://turbo.build/schema.json",
"globalPassThroughEnv": [
"ANALYZE",
"ARAGON_BACKEND_URL",
"CI",
"JEST_WORKER_ID",
"NEXT_PUBLIC_ENV",
"NEXT_PUBLIC_SENTRY_DSN",
"NEXT_PUBLIC_SENTRY_ORG",
"NEXT_PUBLIC_SENTRY_PROJECT",
"NEXT_RUNTIME",
"NEXT_SECRET_ANKR_RPC_KEY",
"NEXT_SECRET_ARAGON_BACKEND_API_KEY",
"NEXT_SECRET_DRPC_RPC_KEY",
"NEXT_SECRET_IPFS_JWT",
"NEXT_SECRET_PEAQ_QUICKNODE_RPC_KEY",
"NEXT_SECRET_RPC_KEY",
"NEXT_SECRET_SENTRY_AUTH_TOKEN",
"SENTRY_AUTH_TOKEN",
"SENTRY_DSN",
"SENTRY_ORG",
"SENTRY_PROJECT",
"SENTRY_REPORT_KEY",
"SENTRY_REPORT_URI",
"version"
],
"tasks": {
"lint": {
"cache": true,
"inputs": [
"src/**/*.{ts,tsx,js,jsx}",
"*.config.{js,ts,mjs}",
"biome.json"
],
"outputs": []
},
"type-check": {
"cache": true,
"inputs": [
"src/**/*.{ts,tsx}",
"tsconfig.json",
"next-env.d.ts"
],
"outputs": []
},
"test": {
"cache": true,
"inputs": [
"src/**/*.{ts,tsx}",
"jest.config.js",
"tsconfig.json"
],
"outputs": [
"coverage/**"
],
"dependsOn": [
"type-check"
]
}
}
}