- 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>
13 lines
254 B
JSON
13 lines
254 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"include": [
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
".react-router/types/**/*"
|
|
],
|
|
"compilerOptions": {
|
|
"rootDirs": [".", "./.react-router/types"],
|
|
"outDir": "build",
|
|
"types": ["vite/client"]
|
|
}
|
|
}
|