Compare commits

...

2 Commits

Author SHA1 Message Date
b9bbb676b1 Merge pull request '[QOTD-3] Configure TypeScript (tsconfig.json)' (#2) from ssmp/qotd-3-r6 into main 2026-07-21 05:45:30 +00:00
sdlcadmin
348204558f Add tsconfig.json and empty src/index.ts
Configures TypeScript with strict: true, target ES2020, rootDir src/, outDir dist/. tsc --noEmit passes cleanly.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-07-21 05:05:02 +00:00
2 changed files with 12 additions and 0 deletions

0
src/index.ts Normal file
View File

12
tsconfig.json Normal file
View File

@ -0,0 +1,12 @@
{
"compilerOptions": {
"strict": true,
"target": "ES2020",
"module": "commonjs",
"rootDir": "src",
"outDir": "dist",
"esModuleInterop": true,
"skipLibCheck": true
},
"include": ["src"]
}