feat: scaffold monorepo

This commit is contained in:
Yangshun Tay
2022-09-29 16:23:34 +08:00
parent 27a82e8c0f
commit 523d91f920
62 changed files with 19346 additions and 712 deletions

32
turbo.json Normal file
View 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
}
}
}