| 1234567891011121314151617181920212223242526 |
- {
- "$schema": "https://turborepo.com/schema.json",
- "ui": "tui",
- "tasks": {
- "build": {
- "dependsOn": ["^build"],
- "inputs": ["$TURBO_DEFAULT$", ".env*"],
- "outputs": [".next/**", "!.next/cache/**", "dist/**"]
- },
- "lint": {
- "dependsOn": ["^lint"]
- },
- "check-types": {
- "dependsOn": ["^check-types"]
- },
- "dev": {
- "cache": false,
- "persistent": true
- },
- "start": {
- "dependsOn": ["build"],
- "cache": false,
- "persistent": true
- }
- }
- }
|