1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-11-15 00:23:13 +01:00
.profile/turbo.json

42 lines
914 B
JSON
Raw Normal View History

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"env": ["IS_STANDALONE"],
"dependsOn": ["^build"],
"outputs": [
"build/**",
"storybook-static/**",
".next/**",
"!.next/cache/**"
]
},
"test": {
"dependsOn": ["^test"],
"outputs": ["coverage/**"]
},
2024-10-12 23:51:58 +02:00
"lint:eslint-transit-node": {
"dependsOn": ["^lint:eslint-transit-node"]
},
"lint:eslint": {
2024-10-12 23:51:58 +02:00
"dependsOn": ["lint:eslint-transit-node"]
},
"lint:typescript-transit-node": {
"dependsOn": ["^lint:typescript-transit-node"]
},
"lint:typescript": {
2024-10-12 23:51:58 +02:00
"dependsOn": ["lint:typescript-transit-node"]
},
"dev": {
"cache": false,
"persistent": true
},
"start": {
"dependsOn": ["build"],
"persistent": true
}
}
}