- Add pnpm workspace and Turborepo configuration - Extract Gateway SDK to packages/sdk as independent package - Add Next.js + shadcn Web client in apps/web - Update root package.json with turbo scripts Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
273 B
JSON
16 lines
273 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"typecheck": {
|
|
"dependsOn": ["^build"]
|
|
}
|
|
}
|
|
}
|