mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-10 20:30:41 +00:00
24 lines
526 B
JSON
24 lines
526 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
|
|
}
|
|
}
|
|
}
|