CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
Blame · Line-by-line history
tsconfig.json
Each line is annotated with the commit that last touched it. Click any SHA to jump to that commit and see the surrounding change.
| fc1817a | 1 | { |
| 2 | "compilerOptions": { | |
| 3 | "target": "ES2022", | |
| 4 | "module": "ES2022", | |
| 5 | "moduleResolution": "bundler", | |
| 6 | "jsx": "react-jsx", | |
| 7 | "jsxImportSource": "hono/jsx", | |
| 8 | "strict": true, | |
| 9 | "esModuleInterop": true, | |
| 10 | "skipLibCheck": true, | |
| 11 | "forceConsistentCasingInFileNames": true, | |
| 12 | "resolveJsonModule": true, | |
| 13 | "declaration": true, | |
| 14 | "declarationMap": true, | |
| 15 | "sourceMap": true, | |
| 16 | "outDir": "./dist", | |
| 17 | "paths": { | |
| 18 | "@/*": ["./src/*"] | |
| 19 | }, | |
| 20 | "types": ["bun-types"] | |
| 21 | }, | |
| 22 | "include": ["src/**/*.ts", "src/**/*.tsx"], | |
| 23 | "exclude": ["node_modules", "dist"] | |
| 24 | } |