Wan2.1/wan-pwa/turbo.json
Claude f21ab74e38
chore: add configuration files for monorepo setup
- Add root package.json and turbo.json
- Add Next.js config files
- Add FastAPI environment example
- Add PWA manifest
- Add ESLint and Prettier config

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-10-24 14:19:02 +00:00

24 lines
438 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["^lint"]
},
"test": {
"dependsOn": ["^test"]
},
"clean": {
"cache": false
}
}
}