data-peek/packages/shared/tsconfig.json
Rohith Gilla 16d5a6b217
feat: integrate Turborepo for monorepo build orchestration (#15)
- Add turbo as dev dependency
- Create turbo.json with task configuration for build, lint, typecheck, dev
- Update root package.json scripts to use turbo run
- Add tsconfig.json to shared package (required for typecheck)
- Add .turbo to clean script

Benefits:
- Caching: Unchanged packages skip rebuilding (73ms cached vs 5.4s uncached)
- Parallelism: Independent tasks run concurrently
- Dependency ordering: shared package builds before dependent packages

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude <noreply@anthropic.com>
2025-11-30 23:09:23 +05:30

14 lines
283 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"noEmit": true
},
"include": ["src"]
}