47 lines
924 B
JSON
47 lines
924 B
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"ui": "tui",
|
|
"tasks": {
|
|
"//#format-and-lint": {},
|
|
"//#format-and-lint:fix": {
|
|
"cache": false
|
|
},
|
|
"test:transit": {
|
|
"dependsOn": ["^test:transit"]
|
|
},
|
|
"test": {
|
|
"dependsOn": ["test:transit"]
|
|
},
|
|
"test:watch": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["$TURBO_DEFAULT$", ".env*"],
|
|
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
|
|
},
|
|
"check-types": {
|
|
"dependsOn": ["^check-types", "^generate"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"dev:watch": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"export-openapi": {
|
|
"cache": false,
|
|
"outputs": ["../../../packages/api-client-backend/openapi.json"]
|
|
},
|
|
"generate": {
|
|
"dependsOn": ["^export-openapi"],
|
|
"cache": false,
|
|
"inputs": ["openapi.json"],
|
|
"outputs": ["generated/**"]
|
|
}
|
|
}
|
|
}
|