-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathturbo.json
More file actions
101 lines (101 loc) · 1.97 KB
/
turbo.json
File metadata and controls
101 lines (101 loc) · 1.97 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"$schema": "https://turborepo.org/schema.json",
"tasks": {
"highlight.run#typegen": {
"dependsOn": [
"@highlight-run/rrweb#build",
"@highlight-run/rrweb-rrweb-plugin-sequential-id-record#build",
"@highlight-run/rrweb-types#build"
],
"inputs": ["src/**/*.tsx", "src/**/*.ts", "tsconfig.json"],
"outputs": ["dist/**/*.d.ts"]
},
"codegen": {
"inputs": ["./**/*.gql", "./**/*.graphqls"],
"outputs": ["src/graph/generated/**"],
"cache": false
},
"typegen": {
"dependsOn": ["^typegen"],
"inputs": [
"src/**/*.tsx",
"src/**/*.ts",
"tsconfig.json",
"tsconfig.tsbuildinfo",
"./**/*.graphqls"
],
"outputs": [
"lib/**/*.d.ts",
"es/**/*.d.ts",
"dist/**/*.d.ts",
"typings/**/*.d.ts",
"build/**/*.d.ts",
"esm/**/*.d.ts"
]
},
"docs": {
"dependsOn": ["^build", "typegen"],
"inputs": [
"src/**/*.tsx",
"src/**/*.ts",
"tsconfig.json",
"typedoc.json"
],
"outputs": ["docs/**"]
},
"build": {
"dependsOn": ["^build", "typegen"],
"outputs": [
".next/**",
"lib/**",
"es/**",
"dist/**",
"typings/**",
"build/**",
"esm/**"
]
},
"dev": {
"dependsOn": ["^build", "typegen"],
"cache": false,
"persistent": true
},
"dev:watch": {
"cache": false,
"persistent": true
},
"enforce-size": {
"dependsOn": ["build"]
},
"lint": {
"dependsOn": ["^build"],
"outputs": [],
"inputs": ["**/*.ts*"]
},
"test": {
"dependsOn": ["lint", "build", "enforce-size"],
"env": [
"AWS_ACCESS_KEY_ID",
"AWS_SECRET_ACCESS_KEY",
"PSQL_DB",
"PSQL_HOST",
"PSQL_PASSWORD",
"PSQL_PORT",
"PSQL_USER"
],
"outputs": [],
"inputs": [
"src/**/*.tsx",
"src/**/*.ts",
"test/**/*.ts",
"test/**/*.tsx"
]
},
"sourcemaps": {
"dependsOn": ["test"],
"env": ["HIGHLIGHT_API_KEY"]
}
},
"globalEnv": ["DOPPLER_TOKEN", "NODE_ENV"],
"globalDependencies": ["yarn.lock", ".nvmrc", ".yarnrc.yml"]
}