Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
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.

tsconfig.jsonBlame15 lines · 1 contributor
eae38d1Claude1{
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}