supermemory/turbo.json
2024-03-30 21:58:21 -07:00

40 lines
No EOL
653 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"outputs": [
".next/**",
"!.next/cache/**"
]
},
"deploy": {
"dependsOn": [
"build",
"test",
"lint"
]
},
"db:push": {},
"db:studio": {},
"test": {
"dependsOn": [
"build"
],
"inputs": [
"src/**/*.tsx",
"src/**/*.ts",
"test/**/*.ts",
"test/**/*.tsx"
]
},
"lint": {},
"type-check": {},
"dev": {
"env": [
"NODE_ENV=development"
],
"cache": false,
"persistent": true
}
}
}