{
	"$schema": "https://turbo.build/schema.json",
	"globalDependencies": ["**/.env.*local"],
	"ui": "tui",
	"tasks": {
		"topo": {
			"dependsOn": ["^topo"]
		},
		"build": {
			"dependsOn": ["^build"],
			"outputs": ["dist/**", ".next/**", "!.next/cache/**", "storybook-static/**"]
		},
		"start": {},
		"type-check": {
			"dependsOn": ["^topo"],
			"outputs": [".cache/tsbuildinfo.json"]
		},
		"dev": {
			"cache": false,
			"persistent": true
		},
		"playwright:test": {
			"outputs": ["test-results"]
		},
		"clean": {
			"cache": false
		},
		"test": {
			"dependsOn": ["^topo"],
			"outputs": [".cache/.vitestcache"]
		},
		"test-run": {
			"dependsOn": ["^topo"],
			"outputs": [".cache/.vitestcache"]
		},
		"//#turbo:p:build": {
			"inputs": ["packages/*/src/**"],
			"outputs": ["packages/*/dist/**"]
		}
	}
}
