35 lines
653 B
JSON
35 lines
653 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"export-dynamic": {
|
|
"outputs": ["dist-dynamic/**"]
|
|
},
|
|
"start": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"build": {
|
|
"outputs": ["dist/**"],
|
|
"dependsOn": ["//#tsc", "^build"]
|
|
},
|
|
"app#build": {
|
|
"outputs": ["dist/**"],
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"outputs": ["coverage/**"]
|
|
},
|
|
"lint": {},
|
|
"//#tsc": {
|
|
"outputs": ["dist-types/**"]
|
|
},
|
|
"//#prettier:fix": {
|
|
"cache": false
|
|
}
|
|
},
|
|
"globalDependencies": ["tsconfig.json"]
|
|
}
|