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