mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-05-13 15:31:49 +00:00
40 lines
No EOL
653 B
JSON
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
|
|
}
|
|
}
|
|
} |