www/turbo.json
2025-06-22 22:37:02 +12:00

42 lines
906 B
JSON

{
"$schema": "https://turborepo.com/schema.json",
"tasks": {
"dev": {
"cache": false,
"persistent": true,
"outputs": []
},
"lint": {
"cache": true,
"inputs": ["**/*{ts,tsx,js,jsx,astro}"],
"outputs": []
},
"format": {
"cache": true,
"inputs": ["**/*.{ts,tsx,js,jsx,astro,json,yml,yaml}"],
"outputs": []
},
"build": {
"cache": true,
"inputs": ["src"],
"outputs": ["dist/**"]
},
"test": {
"cache": true,
"inputs": ["**/*.{ts,tsx,js,jsx}"],
"outputs": []
},
"spell": {
"cache": true,
"inputs": ["**/*.{ts,tsx,js,jsx,astro,md,json,yml,yaml}"],
"outputs": []
},
"test:playwright": {
"cache": true,
"dependsOn": ["build"],
"inputs": ["src"],
"outputs": ["playwright-report/**", "test-results/**"]
}
},
"ui": "tui"
}