chore: sync workspace changes

This commit is contained in:
Nathan Flurry 2026-01-25 01:57:16 -08:00
parent 30d3aca1ee
commit f92ecd9b9a
38 changed files with 4829 additions and 1219 deletions

17
turbo.json Normal file
View file

@ -0,0 +1,17 @@
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", "build/**", "lib/**", "src/generated/**"]
},
"generate": {
"dependsOn": ["^generate"],
"outputs": ["src/generated/**"]
},
"dev": {
"cache": false,
"persistent": true
}
}
}