Complete monorepo toolchain setup (tasks 1.1-1.7)

- Turborepo + pnpm workspaces with catalog for shared dependency versions
- TypeScript strict config (base + per-package extends)
- Tailwind CSS v4 via @tailwindcss/vite plugin
- ESLint + Prettier shared config
- Planner app scaffolded with React Router 7 (port 3001)
- Journal app scaffolded with React Router 7 (port 3000)
- Both apps build and start successfully via turbo

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ullrich Schäfer 2026-03-22 12:12:57 +01:00
parent 48547fdc82
commit 30d40de7cf
No known key found for this signature in database
GPG key ID: A32FF691A0F752D9
28 changed files with 4096 additions and 13 deletions

View file

@ -1,12 +1,12 @@
## 1. Monorepo Toolchain Setup
- [ ] 1.1 Install pnpm and Turborepo, configure workspaces
- [ ] 1.2 Set up TypeScript config (base tsconfig, per-package extends)
- [ ] 1.3 Set up Tailwind CSS (shared config, content paths for monorepo)
- [ ] 1.4 Set up ESLint and Prettier (shared config)
- [ ] 1.5 Scaffold Planner app with React Router 7 (`apps/planner`)
- [ ] 1.6 Scaffold Journal app with React Router 7 (`apps/journal`)
- [ ] 1.7 Verify `turbo dev` starts both apps and `turbo build` succeeds
- [x] 1.1 Install pnpm and Turborepo, configure workspaces
- [x] 1.2 Set up TypeScript config (base tsconfig, per-package extends)
- [x] 1.3 Set up Tailwind CSS (shared config, content paths for monorepo)
- [x] 1.4 Set up ESLint and Prettier (shared config)
- [x] 1.5 Scaffold Planner app with React Router 7 (`apps/planner`)
- [x] 1.6 Scaffold Journal app with React Router 7 (`apps/journal`)
- [x] 1.7 Verify `turbo dev` starts both apps and `turbo build` succeeds
## 2. Shared Packages