From 348204558ffe0f210fe0d5c6f6d65ba372768152 Mon Sep 17 00:00:00 2001 From: sdlcadmin Date: Tue, 21 Jul 2026 05:05:02 +0000 Subject: [PATCH] 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 --- src/index.ts | 0 tsconfig.json | 12 ++++++++++++ 2 files changed, 12 insertions(+) create mode 100644 src/index.ts create mode 100644 tsconfig.json diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..e69de29 diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..bee32cb --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "strict": true, + "target": "ES2020", + "module": "commonjs", + "rootDir": "src", + "outDir": "dist", + "esModuleInterop": true, + "skipLibCheck": true + }, + "include": ["src"] +}