-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathturbo.json
More file actions
50 lines (50 loc) · 1.12 KB
/
turbo.json
File metadata and controls
50 lines (50 loc) · 1.12 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
{
"$schema": "https://turborepo.com/schema.json",
"globalDependencies": ["pnpm-workspace.yaml", "tsconfig.json"],
"tasks": {
"build": {
"env": ["COMMIT_SHA", "MODE", "NODE_ENV", "SENTRY_*"],
"inputs": [
"app/**",
"mocks/**",
"public/**",
"server/**",
"react-router.config.ts",
"tailwind.config.ts",
"vite.config.ts"
],
"outputs": ["build/**"]
},
"test": {
"dependsOn": ["typegen"],
"inputs": ["app/**", "mocks/**", "public/**", "server/**", "*.ts"]
},
"lint": {
"dependsOn": ["typegen"],
"inputs": [
".storybook/**",
"app/**",
"mocks/**",
"server/**",
"tests/**",
"*.{cjs,js,mjs,ts}"
]
},
"typegen": {
"inputs": ["app/*.{ts,tsx}", "app/routes/**", "react-router.config.ts"],
"outputs": [".react-router/**"]
},
"typecheck": {
"dependsOn": ["typegen"],
"inputs": [
".storybook/**",
"app/**",
"mocks/**",
"public/**",
"server/**",
"tests/**",
"*.ts"
]
}
}
}