Files
reservoir/turbo.json
Morten Olsen 40187c9a8a init
2025-11-03 13:09:46 +01:00

38 lines
598 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
"dist/**",
"public/**"
],
"inputs": [
"src/**/*.tsx",
"src/**/*.ts",
"./tsconfig.*",
"../../pnpm-lock.yaml"
]
},
"test": {
"cache": false
},
"clean": {},
"dev": {
"dependsOn": [
"^build"
],
"cache": false,
"persistent": true
},
"demo": {
"dependsOn": [
"^build"
],
"persistent": true
}
}
}