Files
chatgpt-exporter/turbo.json
Pionxzh c75b0f254d init
2022-12-05 19:43:24 +08:00

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": []
}
}
}