mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
73 lines
1.2 KiB
JSON
73 lines
1.2 KiB
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDotEnv": [
|
|
".env",
|
|
".env.local",
|
|
".env.development",
|
|
".env.development.local",
|
|
".env.production",
|
|
".env.production.local"
|
|
],
|
|
"tasks": {
|
|
"build": {
|
|
"inputs": [
|
|
"$TURBO_DEFAULT$",
|
|
".env",
|
|
".env.local",
|
|
".env.development",
|
|
".env.development.local",
|
|
".env.production",
|
|
".env.production.local"
|
|
],
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
".next",
|
|
"dist/**",
|
|
"lib/**",
|
|
"*.js",
|
|
"*.d.ts",
|
|
"*.d.ts.map"
|
|
],
|
|
"outputLogs": "new-only"
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
},
|
|
"dev": {
|
|
"persistent": true,
|
|
"cache": false
|
|
},
|
|
"start": {
|
|
"persistent": true,
|
|
"cache": false
|
|
},
|
|
"lint": {
|
|
"cache": false
|
|
},
|
|
"codegen": {
|
|
"cache": false
|
|
},
|
|
"prisma": {
|
|
"cache": false
|
|
},
|
|
"typecheck": {
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"persistent": true,
|
|
"cache": false
|
|
},
|
|
"test:watch": {
|
|
"cache": false
|
|
},
|
|
"generate-docs": {
|
|
"cache": false
|
|
},
|
|
"generate-keys": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|