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.
| eae38d1 | 1 | { |
| 2 | "compilerOptions": { | |
| 3 | "module": "commonjs", | |
| 4 | "target": "ES2020", | |
| 5 | "outDir": "dist", | |
| 6 | "rootDir": "src", | |
| 7 | "lib": ["ES2020"], | |
| 8 | "strict": true, | |
| 9 | "esModuleInterop": true, | |
| 10 | "skipLibCheck": true, | |
| 11 | "resolveJsonModule": true | |
| 12 | }, | |
| 13 | "include": ["src/**/*"], | |
| 14 | "exclude": ["node_modules", "dist"] | |
| 15 | } |