mirror of
https://github.com/Rohithgilla12/data-peek
synced 2026-04-21 21:07:17 +00:00
- 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>
14 lines
283 B
JSON
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"]
|
|
}
|