mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2026-02-03 02:24:47 +08:00
34 lines
560 B
JSON
34 lines
560 B
JSON
{
|
|
"$schema": "https://turborepo.org/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"outputs": [
|
|
"dist/**",
|
|
".next/**",
|
|
"build/**",
|
|
"api/**",
|
|
"public/build/**",
|
|
"storybook-static/**"
|
|
],
|
|
"dependsOn": ["^build"]
|
|
},
|
|
"test": {
|
|
"outputs": ["coverage/**"],
|
|
"dependsOn": []
|
|
},
|
|
"lint": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": []
|
|
},
|
|
"tsc": {
|
|
"cache": true
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"clean": {
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|