stack/turbo.json
2024-03-04 22:46:07 +01:00

41 lines
613 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
".next",
"dist/**",
"lib/**",
"*.js",
"*.d.ts",
"*.d.ts.map"
],
"outputMode": "new-only"
},
"clean": {
"cache": false
},
"dev": {
"cache": false
},
"start": {
"cache": false
},
"lint": {
"cache": false
},
"codegen": {
"cache": false
},
"prisma": {
"cache": false
},
"typecheck": {
"cache": false
}
}
}