-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathturbo.json
More file actions
42 lines (42 loc) · 1.13 KB
/
turbo.json
File metadata and controls
42 lines (42 loc) · 1.13 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
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**", "dist/**", "build/**"],
"env": ["NODE_OPTIONS=--max-old-space-size=4096"]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["^lint"],
"inputs": ["$TURBO_DEFAULT$", "eslint.config.*", ".eslintrc.*"]
},
"typecheck": {
"dependsOn": ["^typecheck"],
"inputs": ["$TURBO_DEFAULT$", "tsconfig.json", "**/*.ts", "**/*.tsx"]
},
"test": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", "jest.config.*", "**/*.test.*"]
},
"clean": {
"cache": false
},
"build-storybook": {
"dependsOn": ["^build-storybook"],
"inputs": ["$TURBO_DEFAULT$", "storybook.config.*"]
},
"storybook": {
"dependsOn": ["^build"],
"cache": false,
"persistent": true
}
},
"globalDependencies": ["package.json", "pnpm-workspace.yaml", "tsconfig.json"],
"globalEnv": ["NODE_ENV", "VERCEL_URL"]
}