Initial commit: add .gitignore and README
Some checks failed
DBIS Monorepo CI / Build (push) Has been cancelled
DBIS Monorepo CI / Lint (push) Has been cancelled
DBIS Monorepo CI / Type Check (push) Has been cancelled
DBIS Monorepo CI / Test (push) Has been cancelled

This commit is contained in:
defiQUG
2026-02-09 21:51:45 -08:00
commit f32bcd596f
14 changed files with 506 additions and 0 deletions

27
turbo.json Normal file
View File

@@ -0,0 +1,27 @@
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "build/**"]
},
"test": {
"dependsOn": ["build"],
"outputs": ["coverage/**"]
},
"lint": {
"outputs": []
},
"type-check": {
"dependsOn": ["^build"],
"outputs": []
},
"clean": {
"cache": false
},
"dev": {
"cache": false,
"persistent": true
}
}
}