mirror of
https://github.com/pionxzh/chatgpt-exporter.git
synced 2026-07-23 09:00:51 -05:00
24 lines
435 B
JSON
24 lines
435 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"dependsOn": ["build"],
|
|
"outputs": [],
|
|
"inputs": ["src/**/*.tsx", "src/**/*.ts", "test/**/*.ts", "test/**/*.tsx"]
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"lint:fix": {
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|