mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2026-06-14 22:17:25 +08:00
feat: scaffold monorepo
This commit is contained in:
32
turbo.json
Normal file
32
turbo.json
Normal file
@@ -0,0 +1,32 @@
|
||||
{
|
||||
"$schema": "https://turborepo.org/schema.json",
|
||||
"pipeline": {
|
||||
"build": {
|
||||
"outputs": [
|
||||
"dist/**",
|
||||
".next/**",
|
||||
"build/**",
|
||||
"api/**",
|
||||
"public/build/**"
|
||||
],
|
||||
"dependsOn": ["^build"]
|
||||
},
|
||||
"test": {
|
||||
"outputs": ["coverage/**"],
|
||||
"dependsOn": []
|
||||
},
|
||||
"lint": {
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": []
|
||||
},
|
||||
"tsc": {
|
||||
"cache": true
|
||||
},
|
||||
"dev": {
|
||||
"cache": false
|
||||
},
|
||||
"clean": {
|
||||
"cache": false
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user