| 123456789101112131415161718192021222324252627282930 |
- {
- "$schema": "https://turbo.build/schema.json",
- "tasks": {
- "build": {
- "dependsOn": ["^build"],
- "outputs": ["dist/**", "build/**","dist.zip"]
- },
- "dev": {
- "cache": false,
- "persistent": true
- },
- "lint": {
- "outputs": []
- },
- "build:analyze": {
- "dependsOn": ["^build"],
- "outputs": ["dist/**"]
- },
- "test": {
- "dependsOn": ["build"],
- "outputs": []
- },
- "clean": {
- "cache": false
- },
- "remoteCache": {
-
- }
- }
- }
|