1
0
Fork 0
mirror of https://github.com/imjasonh/gitscrub synced 2026-07-06 18:42:21 +00:00
gitscrub/tsconfig.node.json
Jason Hall f77c832217
Initial commit: GitScrub - GitHub repository history explorer
Features:
- Browse any GitHub repository with authentication
- Interactive timeline slider for file history navigation
- Click anywhere on timeline to jump to specific commits
- Keyboard navigation with arrow keys
- Diff visualization between commits
- Load more commits for extensive history
- Pure client-side app with no backend required

Tech stack: React, TypeScript, Vite, GitHub API

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-16 13:24:51 -04:00

25 lines
630 B
JSON

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
"target": "ES2022",
"lib": ["ES2023"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["vite.config.ts"]
}