18 lines · 284 B
1 {
2 "$schema": "https://turbo.build/schema.json",
3 "tasks": {
4 "build": {
5 "dependsOn": ["^build"],
6 "outputs": ["dist/**"]
7 },
8 "dev": {
9 "cache": false,
10 "persistent": true
11 },
12 "test": {
13 "dependsOn": ["^build"]
14 },
15 "lint": {}
16 }
17 }
18