-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathturbo.json
More file actions
40 lines (40 loc) · 1.1 KB
/
turbo.json
File metadata and controls
40 lines (40 loc) · 1.1 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
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"check-eslint": {
"inputs": [
"$TURBO_DEFAULT$",
"$TURBO_ROOT$/tsconfig.json",
"$TURBO_ROOT$/packages/eslint-config/*",
"$TURBO_ROOT$/packages/eslint-config/src/**/*"
]
},
"check-biome": {
"inputs": ["$TURBO_DEFAULT$", "$TURBO_ROOT$/tsconfig.json", "$TURBO_ROOT$/biome.jsonc"]
},
"check-prettier": {},
"check-svelte": {},
"check-typescript": {
"inputs": ["$TURBO_DEFAULT$", "$TURBO_ROOT$/tsconfig.json"]
},
"preview": {
"dependsOn": ["build"],
"cache": false,
"persistent": true
},
"check-vitest": {},
"pack": {
"dependsOn": ["framer-plugin-tools#build"],
"cache": false
}
}
}