mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
41 lines
613 B
JSON
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
|
|
}
|
|
}
|
|
}
|