Files
github-commits-widget/tsconfig.app.json
Kayela Claybon 7725cd75a4 feat: initialize GitHub commits widget with React and TypeScript
- Add package.json with dependencies and scripts for development
- Create main application structure with App component
- Implement GitHubWidget component to display recent commits
- Add GitHubCommitItem component for individual commit display
- Create custom hooks for fetching GitHub and Gitea commits
- Set up Vite for development and build processes
- Include Tailwind CSS for styling
- Add styles for the widget and components
- Configure TypeScript with appropriate settings
- Create utility functions for GitHub API interactions
2026-01-15 15:38:59 -06:00

29 lines
732 B
JSON

{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ES2022",
"useDefineForClassFields": true,
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"types": ["vite/client"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},
"include": ["src"]
}