1
0
mirror of https://github.com/theoludwig/theoludwig.git synced 2026-02-20 03:09:20 +01:00
Files
.profile/turbo.json

37 lines
834 B
JSON

{
"$schema": "./node_modules/turbo/schema.json",
"noUpdateNotifier": true,
"ui": "tui",
"tasks": {
"build": {
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"env": ["IS_STANDALONE"],
"dependsOn": ["^build"],
"outputs": ["build/**", "storybook-static/**", ".next/**", "!.next/cache/**"]
},
"test": {
"dependsOn": ["^test"],
"outputs": []
},
"lint:typescript-transit-node": {
"dependsOn": ["^lint:typescript-transit-node"]
},
"lint:typescript": {
"dependsOn": ["typegen", "lint:typescript-transit-node"]
},
"typegen": {
"dependsOn": ["^typegen"],
"outputs": [],
"cache": false
},
"dev": {
"cache": false,
"persistent": true
},
"start": {
"dependsOn": ["build"],
"persistent": true
}
}
}