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.jsonBlame20 lines · 1 contributor
63fe719Claude1{
2 "compilerOptions": {
3 "target": "ES2022",
4 "module": "commonjs",
5 "moduleResolution": "node",
6 "lib": ["ES2022", "DOM"],
7 "outDir": "./out",
8 "rootDir": "./src",
9 "sourceMap": true,
10 "strict": true,
11 "esModuleInterop": true,
12 "skipLibCheck": true,
13 "forceConsistentCasingInFileNames": true,
14 "resolveJsonModule": true,
15 "declaration": false,
16 "types": ["node", "vscode"]
17 },
18 "include": ["src/**/*.ts"],
19 "exclude": ["node_modules", "out", ".vscode-test"]
20}