Files
plainidx/turbo.json
2024-12-10 22:40:29 +01:00

31 lines
487 B
JSON

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