aboutsummaryrefslogtreecommitdiff
path: root/turbo.json
blob: 1fec8122210e29cde8b99399730cd303a4a9e474 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
	"$schema": "https://turborepo.dev/schema.json",
	"tasks": {
		"build": {
			"dependsOn": ["^build"],
			"outputs": [".next/**", "!.next/cache/**", "dist/**"]
		},
		"dev": {
			"cache": false,
			"persistent": true
		},
		"test": {
			"dependsOn": ["^build"]
		}
	}
}